pub struct PriorityQueue<const N: usize, T: Copy> { /* private fields */ }Expand description
A simple prioritized queue
Implementations§
Source§impl<const N: usize, T> PriorityQueue<N, T>
impl<const N: usize, T> PriorityQueue<N, T>
Trait Implementations§
Auto Trait Implementations§
impl<const N: usize, T> !Freeze for PriorityQueue<N, T>
impl<const N: usize, T> !RefUnwindSafe for PriorityQueue<N, T>
impl<const N: usize, T> Send for PriorityQueue<N, T>where
T: Send,
impl<const N: usize, T> Sync for PriorityQueue<N, T>where
T: Send,
impl<const N: usize, T> Unpin for PriorityQueue<N, T>where
T: Unpin,
impl<const N: usize, T> UnwindSafe for PriorityQueue<N, T>where
T: 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