enum StateProj<'pin, T: Filter, U: Filter>where
State<T, U>: 'pin,{
First(Pin<&'pin mut T::Future>, &'pin mut U),
Second(&'pin mut Option<T::Error>, Pin<&'pin mut U::Future>),
Done,
}
Variants§
First(Pin<&'pin mut T::Future>, &'pin mut U)
Second(&'pin mut Option<T::Error>, Pin<&'pin mut U::Future>)
Done
Auto Trait Implementations§
impl<'pin, T, U> Freeze for StateProj<'pin, T, U>
impl<'pin, T, U> RefUnwindSafe for StateProj<'pin, T, U>where
U: RefUnwindSafe,
<T as FilterBase>::Future: RefUnwindSafe,
<T as FilterBase>::Error: RefUnwindSafe,
<U as FilterBase>::Future: RefUnwindSafe,
impl<'pin, T, U> Send for StateProj<'pin, T, U>where
U: Send,
impl<'pin, T, U> Sync for StateProj<'pin, T, U>
impl<'pin, T, U> Unpin for StateProj<'pin, T, U>
impl<'pin, T, U> !UnwindSafe for StateProj<'pin, T, U>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more