enum ThenItem<Fut, T> {
Running {
future: Fut,
ordering: T,
},
Idle,
}Variants§
Trait Implementations§
impl<'__pin, Fut, T> Unpin for ThenItem<Fut, T>where
PinnedFieldsOf<__Origin<'__pin, Fut, T>>: Unpin,
Auto Trait Implementations§
impl<Fut, T> Freeze for ThenItem<Fut, T>
impl<Fut, T> RefUnwindSafe for ThenItem<Fut, T>where
Fut: RefUnwindSafe,
T: RefUnwindSafe,
impl<Fut, T> Send for ThenItem<Fut, T>
impl<Fut, T> Sync for ThenItem<Fut, T>
impl<Fut, T> UnwindSafe for ThenItem<Fut, T>where
Fut: UnwindSafe,
T: UnwindSafe,
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