[][src]Struct coca::binary_heap::DrainSorted

pub struct DrainSorted<'a, E, B, I> where
    E: Ord,
    B: ContiguousStorage<E>,
    I: Capacity
{ /* fields omitted */ }

A draining iterator over the elements of a BinaryHeap.

This struct is created by BinaryHeap::drain_sorted(). See its documentation for more.

Trait Implementations

impl<E, B, I> Drop for DrainSorted<'_, E, B, I> where
    E: Ord,
    B: ContiguousStorage<E>,
    I: Capacity
[src]

impl<E, B, I> ExactSizeIterator for DrainSorted<'_, E, B, I> where
    E: Ord,
    B: ContiguousStorage<E>,
    I: Capacity
[src]

impl<E, B, I> FusedIterator for DrainSorted<'_, E, B, I> where
    E: Ord,
    B: ContiguousStorage<E>,
    I: Capacity
[src]

impl<E, B, I> Iterator for DrainSorted<'_, E, B, I> where
    E: Ord,
    B: ContiguousStorage<E>,
    I: Capacity
[src]

type Item = E

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, E, B, I> Send for DrainSorted<'a, E, B, I> where
    B: Send,
    E: Send,
    I: Send
[src]

impl<'a, E, B, I> Sync for DrainSorted<'a, E, B, I> where
    B: Sync,
    E: Sync,
    I: Sync
[src]

impl<'a, E, B, I> Unpin for DrainSorted<'a, E, B, I>[src]

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.