1.12.0[][src]Struct nom::lib::std::collections::binary_heap::PeekMut

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

Removes the peeked value from the heap and returns it.

Trait Implementations

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

Executes the destructor for this type. Read more

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

The resulting type after dereferencing.

Important traits for &'a mut R

Dereferences the value.

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

Important traits for &'a mut R

Mutably dereferences the value.

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

Formats the value using the given formatter. Read more

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

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Important traits for &'a mut R

Immutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Important traits for &'a mut R

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more