[][src]Struct sorted_iter::LeftJoin

pub struct LeftJoin<I: Iterator, J: Iterator> { /* fields omitted */ }

Trait Implementations

impl<I: Iterator, J: Iterator> SortedByKey for LeftJoin<I, J>[src]

impl<K, A, B, I, J> Iterator for LeftJoin<I, J> where
    K: Ord,
    I: Iterator<Item = (K, A)>,
    J: Iterator<Item = (K, B)>, 
[src]

type Item = (K, (A, Option<B>))

The type of the elements being iterated over.

Auto Trait Implementations

impl<I, J> Send for LeftJoin<I, J> where
    I: Send,
    J: Send,
    <I as Iterator>::Item: Send,
    <J as Iterator>::Item: Send

impl<I, J> Sync for LeftJoin<I, J> where
    I: Sync,
    J: Sync,
    <I as Iterator>::Item: Sync,
    <J as Iterator>::Item: Sync

impl<I, J> Unpin for LeftJoin<I, J> where
    I: Unpin,
    J: Unpin,
    <I as Iterator>::Item: Unpin,
    <J as Iterator>::Item: Unpin

impl<I, J> UnwindSafe for LeftJoin<I, J> where
    I: UnwindSafe,
    J: UnwindSafe,
    <I as Iterator>::Item: UnwindSafe,
    <J as Iterator>::Item: UnwindSafe

impl<I, J> RefUnwindSafe for LeftJoin<I, J> where
    I: RefUnwindSafe,
    J: RefUnwindSafe,
    <I as Iterator>::Item: RefUnwindSafe,
    <J as Iterator>::Item: RefUnwindSafe

Blanket Implementations

impl<K, V, I> SortedPairIterator<K, V> for I where
    I: SortedByKey + Iterator<Item = (K, V)>,
    K: Ord
[src]

type I = I

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

impl<T> From<T> for 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.

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

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

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