Struct binary_heap_plus::PeekMut [] [src]

pub struct PeekMut<'a, T: 'a, C: 'a + Compare<T>> { /* 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, C: Compare<T>> PeekMut<'a, T, C>
[src]

[src]

Removes the peeked value from the heap and returns it.

Trait Implementations

impl<'a, T: Debug, C: Compare<T>> Debug for PeekMut<'a, T, C>
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Executes the destructor for this type. Read more

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

[src]

Mutably dereferences the value.

Auto Trait Implementations

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

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