pub struct SingleLinkBoxQueueNode<P: Priority> { /* private fields */ }Expand description
A node for BoxQueue which only links to next.
Direct usuage is likely to be a bit verbose; usage of the SingleLinkBoxQueue is recommended.
Trait Implementations§
Auto Trait Implementations§
impl<P> !Freeze for SingleLinkBoxQueueNode<P>
impl<P> !RefUnwindSafe for SingleLinkBoxQueueNode<P>
impl<P> Send for SingleLinkBoxQueueNode<P>where
P: Send,
impl<P> !Unpin for SingleLinkBoxQueueNode<P>
impl<P> !UnsafeUnpin for SingleLinkBoxQueueNode<P>
impl<P> UnwindSafe for SingleLinkBoxQueueNode<P>where
P: 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