enum JoinFutureState<'b, Q: ?Sized, Val> {
Created {
hash: u64,
key: &'b Q,
},
Pending {
shared: Arc<Placeholder<Val>>,
waker: Waker,
},
Done,
}Variants§
Auto Trait Implementations§
impl<'b, Q, Val> Freeze for JoinFutureState<'b, Q, Val>where
Q: ?Sized,
impl<'b, Q, Val> RefUnwindSafe for JoinFutureState<'b, Q, Val>
impl<'b, Q, Val> Send for JoinFutureState<'b, Q, Val>
impl<'b, Q, Val> Sync for JoinFutureState<'b, Q, Val>
impl<'b, Q, Val> Unpin for JoinFutureState<'b, Q, Val>where
Q: ?Sized,
impl<'b, Q, Val> UnwindSafe for JoinFutureState<'b, Q, Val>
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