pub struct PeekMut<'a, T: 'a + Ord> { /* fields omitted */ }
A container object that represents the result of the peek_mut()
method on BinaryHeap
. See its documentation for details.
impl<'a, T: Ord> PeekMut<'a, T>
[src]
fn pop(this: PeekMut<'a, T>) -> T
Removes the peeked value from the heap and returns it.
impl<'a, T: Ord> Drop for PeekMut<'a, T>
[src]
fn drop(&mut self)
A method called when the value goes out of scope. Read more
impl<'a, T: Ord> Deref for PeekMut<'a, T>
[src]
type Target = T
The resulting type after dereferencing
fn deref(&self) -> &T
The method called to dereference a value
impl<'a, T: Ord> DerefMut for PeekMut<'a, T>
[src]
fn deref_mut(&mut self) -> &mut T
The method called to mutably dereference a 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/collections/binary_heap/struct.PeekMut.html