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