Struct steed::collections::binary_heap::PeekMut1.12.0 [] [src]

pub struct PeekMut<'a, T> where T: 'a + Ord { /* fields omitted */ }

A container object that represents the result of the peek_mut() method on BinaryHeap. See its documentation for details.

Methods

impl<'a, T> PeekMut<'a, T> where T: Ord
[src]

🔬 This is a nightly-only experimental API. (binary_heap_peek_mut_pop)

Removes the peeked value from the heap and returns it.

Trait Implementations

impl<'a, T> Drop for PeekMut<'a, T> where T: Ord
[src]

A method called when the value goes out of scope. Read more

impl<'a, T> Deref for PeekMut<'a, T> where T: Ord
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'a, T> DerefMut for PeekMut<'a, T> where T: Ord
[src]

The method called to mutably dereference a value