struct Node<K, V> {
entry: MaybeUninit<(K, V)>,
links: Links<K, V>,
}
Fields§
§entry: MaybeUninit<(K, V)>
§links: Links<K, V>
Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for Node<K, V>
impl<K, V> RefUnwindSafe for Node<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> !Send for Node<K, V>
impl<K, V> !Sync for Node<K, V>
impl<K, V> Unpin for Node<K, V>
impl<K, V> UnwindSafe for Node<K, V>
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