struct ValueLinks<K, V> {
next: NonNull<Node<K, V>>,
prev: NonNull<Node<K, V>>,
}
Fields§
§next: NonNull<Node<K, V>>
§prev: NonNull<Node<K, V>>
Trait Implementations§
Source§impl<K, V> Clone for ValueLinks<K, V>
impl<K, V> Clone for ValueLinks<K, V>
impl<K, V> Copy for ValueLinks<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for ValueLinks<K, V>
impl<K, V> RefUnwindSafe for ValueLinks<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> !Send for ValueLinks<K, V>
impl<K, V> !Sync for ValueLinks<K, V>
impl<K, V> Unpin for ValueLinks<K, V>
impl<K, V> UnwindSafe for ValueLinks<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
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