Struct Entry
struct Entry<K> {
key: K,
sleep: Pin<Box<Sleep>>,
pending_reset: bool,
}Fields§
§key: K§sleep: Pin<Box<Sleep>>§pending_reset: boolImplementations§
Auto Trait Implementations§
impl<K> Freeze for Entry<K>where
K: Freeze,
impl<K> !RefUnwindSafe for Entry<K>
impl<K> Send for Entry<K>where
K: Send,
impl<K> Sync for Entry<K>where
K: Sync,
impl<K> Unpin for Entry<K>where
K: Unpin,
impl<K> !UnwindSafe for Entry<K>
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