Struct heapless::binary_heap::PeekMut [−][src]
pub struct PeekMut<'a, T, N, K> where
T: Ord,
N: ArrayLength<T>,
K: Kind, { /* fields omitted */ }
Expand description
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.