Struct alloc::binary_heap::PeekMut1.12.0[][src]

pub struct PeekMut<'a, 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.

Methods

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

Removes the peeked value from the heap and returns it.

Trait Implementations

impl<'a, T: Ord + Debug> Debug for PeekMut<'a, T>
1.17.0
[src]

Formats the value using the given formatter. Read more

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

Executes the destructor for this type. Read more

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

The resulting type after dereferencing.

Dereferences the value.

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

Mutably dereferences the value.

Auto Trait Implementations

impl<'a, T> Send for PeekMut<'a, T> where
    T: Send

impl<'a, T> Sync for PeekMut<'a, T> where
    T: Sync