pub struct DListNode<T: Sized, Tag> { /* private fields */ }Available on crate feature
dlist only.Expand description
The node structure that must be embedded in items to be stored in a DLinkedList.
Trait Implementations§
impl<T, Tag> Send for DListNode<T, Tag>
Auto Trait Implementations§
impl<T, Tag> Freeze for DListNode<T, Tag>
impl<T, Tag> RefUnwindSafe for DListNode<T, Tag>where
T: RefUnwindSafe,
impl<T, Tag> !Sync for DListNode<T, Tag>
impl<T, Tag> Unpin for DListNode<T, Tag>
impl<T, Tag> UnwindSafe for DListNode<T, Tag>where
T: 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