pub struct DualLinkArenaQueueNode<P: Priority> { /* private fields */ }Expand description
A node for an ArenaQueue which links to both the previous and next nodes.
This is likely a bit verbose for normal use; the DualLinkArenaQueue type alias is recommended instead.
Auto Trait Implementations§
impl<P> Freeze for DualLinkArenaQueueNode<P>where
P: Freeze,
impl<P> RefUnwindSafe for DualLinkArenaQueueNode<P>where
P: RefUnwindSafe,
impl<P> Send for DualLinkArenaQueueNode<P>where
P: Send,
impl<P> Sync for DualLinkArenaQueueNode<P>where
P: Sync,
impl<P> Unpin for DualLinkArenaQueueNode<P>where
P: Unpin,
impl<P> UnsafeUnpin for DualLinkArenaQueueNode<P>where
P: UnsafeUnpin,
impl<P> UnwindSafe for DualLinkArenaQueueNode<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