pub struct Node<N> {
pub data: N,
/* private fields */
}
Fields§
§data: N
Trait Implementations§
Auto Trait Implementations§
impl<N> RefUnwindSafe for Node<N>where N: RefUnwindSafe,
impl<N> Send for Node<N>where N: Send,
impl<N> Sync for Node<N>where N: Sync,
impl<N> Unpin for Node<N>where N: Unpin,
impl<N> UnwindSafe for Node<N>where N: UnwindSafe,
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