pub struct Node<V, N = Empty> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<V, N: DropValue> DropValue for Node<V, N>
impl<V, N: DropValue> DropValue for Node<V, N>
Source§unsafe fn drop_values(&mut self)
unsafe fn drop_values(&mut self)
Safety Read more
Source§impl<V> ListAppend for Node<V>
impl<V> ListAppend for Node<V>
Source§impl<V, N: ListAppend + DropValue> ListAppend for Node<V, N>
impl<V, N: ListAppend + DropValue> ListAppend for Node<V, N>
impl<V> NotEmpty for Node<V>
impl<V, N: NotEmpty> NotEmpty for Node<V, N>
Auto Trait Implementations§
impl<V, N> Freeze for Node<V, N>where
N: Freeze,
impl<V, N> RefUnwindSafe for Node<V, N>where
N: RefUnwindSafe,
V: RefUnwindSafe,
impl<V, N = Empty> !Send for Node<V, N>
impl<V, N = Empty> !Sync for Node<V, N>
impl<V, N> Unpin for Node<V, N>where
N: Unpin,
impl<V, N> UnwindSafe for Node<V, N>where
N: UnwindSafe,
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