[][src]Struct coca::binary_heap::IntoIterSorted

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

A consuming iterator that moves out of a BinaryHeap.

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

Trait Implementations

impl<E, B, I> Clone for IntoIterSorted<E, B, I> where
    BinaryHeap<E, B, I>: Clone,
    E: Clone + Ord,
    B: ContiguousStorage<E>,
    I: Capacity
[src]

impl<E: Debug, B: Debug, I: Debug> Debug for IntoIterSorted<E, B, I> where
    E: Ord,
    B: ContiguousStorage<E>,
    I: Capacity
[src]

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

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

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

impl<E, B, I> Iterator for IntoIterSorted<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<E, B, I> Send for IntoIterSorted<E, B, I> where
    B: Send,
    E: Send,
    I: Send
[src]

impl<E, B, I> Sync for IntoIterSorted<E, B, I> where
    B: Sync,
    E: Sync,
    I: Sync
[src]

impl<E, B, I> Unpin for IntoIterSorted<E, B, I> where
    B: Unpin,
    E: Unpin,
    I: Unpin
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.