enum StateProj<'pin, T, TE, U: Filter>where
State<T, TE, U>: 'pin,{
First(Pin<&'pin mut T>, &'pin mut U),
Second(&'pin mut Option<TE>, Pin<&'pin mut U::Future>),
Done,
}
Variants§
Auto Trait Implementations§
impl<'pin, T, TE, U> Freeze for StateProj<'pin, T, TE, U>
impl<'pin, T, TE, U> RefUnwindSafe for StateProj<'pin, T, TE, U>where
U: RefUnwindSafe,
T: RefUnwindSafe,
TE: RefUnwindSafe,
<U as FilterBase>::Future: RefUnwindSafe,
impl<'pin, T, TE, U> Send for StateProj<'pin, T, TE, U>
impl<'pin, T, TE, U> Sync for StateProj<'pin, T, TE, U>
impl<'pin, T, TE, U> Unpin for StateProj<'pin, T, TE, U>
impl<'pin, T, TE, U> !UnwindSafe for StateProj<'pin, T, TE, 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