Struct tracing_core::stdlib::collections::binary_heap::PeekMut
1.12.0 · source · pub struct PeekMut<'a, T>where
T: 'a + Ord,{
heap: &'a mut BinaryHeap<T>,
original_len: Option<NonZeroUsize>,
}
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.
Fields§
§heap: &'a mut BinaryHeap<T>
§original_len: Option<NonZeroUsize>