pub struct PeekMut<'a, T> where T: 'a + Ord, { /* fields omitted */ }
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.
impl<'a, T> PeekMut<'a, T> where
T: Ord,
[src]
fn pop(this: PeekMut<'a, T>) -> T
Removes the peeked value from the heap and returns it.
impl<'a, T> Drop for PeekMut<'a, T> where
T: Ord,
[src]
fn drop(&mut self)
[src]
Executes the destructor for this type. Read more
impl<'a, T> Debug for PeekMut<'a, T> where
T: Ord + Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl<'a, T> DerefMut for PeekMut<'a, T> where
T: Ord,
[src]
fn deref_mut(&mut self) -> &mut T
[src]
Mutably dereferences the value.
impl<'a, T> Deref for PeekMut<'a, T> where
T: Ord,
[src]
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
Dereferences the value.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/collections/binary_heap/struct.PeekMut.html