[][src]Struct sorted_iter::sorted_pair_iterator::RightJoin

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

Trait Implementations

impl<I: Iterator + Clone, J: Iterator + Clone> Clone for RightJoin<I, J> where
    I::Item: Clone,
    J::Item: Clone
[src]

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

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

The type of the elements being iterated over.

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

impl<K, V, I> AssumeSortedByKeyExt for I where
    I: Iterator<Item = (K, V)>, 
[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<K, V, I> SortedPairIterator<K, V> for I where
    I: Iterator<Item = (K, V)> + SortedByKey
[src]

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.