Struct heapless::binary_heap::PeekMut [−][src]
Structure wrapping a mutable reference to the greatest item on a
BinaryHeap
.
This struct
is created by the peek_mut
method on BinaryHeap
. See
its documentation for more.
Implementations
impl<'a, T, N, K> PeekMut<'a, T, N, K> where
T: Ord,
N: ArrayLength<T>,
K: Kind,
[src]
T: Ord,
N: ArrayLength<T>,
K: Kind,
pub fn pop(this: PeekMut<'a, T, N, K>) -> T
[src]
Removes the peeked value from the heap and returns it.
Trait Implementations
impl<T, N, K> Deref for PeekMut<'_, T, N, K> where
T: Ord,
N: ArrayLength<T>,
K: Kind,
[src]
T: Ord,
N: ArrayLength<T>,
K: Kind,
impl<T, N, K> DerefMut for PeekMut<'_, T, N, K> where
T: Ord,
N: ArrayLength<T>,
K: Kind,
[src]
T: Ord,
N: ArrayLength<T>,
K: Kind,
impl<T, N, K> Drop for PeekMut<'_, T, N, K> where
T: Ord,
N: ArrayLength<T>,
K: Kind,
[src]
T: Ord,
N: ArrayLength<T>,
K: Kind,
Auto Trait Implementations
impl<'a, T, N, K> RefUnwindSafe for PeekMut<'a, T, N, K> where
K: RefUnwindSafe,
<N as ArrayLength<T>>::ArrayType: RefUnwindSafe,
K: RefUnwindSafe,
<N as ArrayLength<T>>::ArrayType: RefUnwindSafe,
impl<'a, T, N, K> Send for PeekMut<'a, T, N, K> where
K: Send,
T: Send,
K: Send,
T: Send,
impl<'a, T, N, K> Sync for PeekMut<'a, T, N, K> where
K: Sync,
T: Sync,
K: Sync,
T: Sync,
impl<'a, T, N, K> Unpin for PeekMut<'a, T, N, K>
impl<'a, T, N, K> !UnwindSafe for PeekMut<'a, T, N, K>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,