union Links<K, V> {
value: ValueLinks<K, V>,
free: FreeLink<K, V>,
}
Fields§
§value: ValueLinks<K, V>
§free: FreeLink<K, V>
Auto Trait Implementations§
impl<K, V> Freeze for Links<K, V>
impl<K, V> RefUnwindSafe for Links<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> !Send for Links<K, V>
impl<K, V> !Sync for Links<K, V>
impl<K, V> Unpin for Links<K, V>
impl<K, V> UnwindSafe for Links<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