enum JoinFutureState<Val> {
Created,
Pending {
shared: Arc<Placeholder<Val>>,
waker: Waker,
},
Done,
}Variants§
Auto Trait Implementations§
impl<Val> Freeze for JoinFutureState<Val>
impl<Val> RefUnwindSafe for JoinFutureState<Val>where
Val: RefUnwindSafe + UnwindSafe,
impl<Val> Send for JoinFutureState<Val>
impl<Val> Sync for JoinFutureState<Val>
impl<Val> Unpin for JoinFutureState<Val>
impl<Val> UnwindSafe for JoinFutureState<Val>where
Val: RefUnwindSafe + 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