[][src]Struct kudo::Zip

pub struct Zip<T> { /* fields omitted */ }

Trait Implementations

impl<A: Iterator> Iterator for Zip<(A,)>[src]

type Item = (A::Item,)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator> Iterator for Zip<(A, B)>[src]

type Item = (A::Item, B::Item)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator, C: Iterator> Iterator for Zip<(A, B, C)>[src]

type Item = (A::Item, B::Item, C::Item)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator, C: Iterator, D: Iterator> Iterator for Zip<(A, B, C, D)>[src]

type Item = (A::Item, B::Item, C::Item, D::Item)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator, C: Iterator, D: Iterator, E: Iterator> Iterator for Zip<(A, B, C, D, E)>[src]

type Item = (A::Item, B::Item, C::Item, D::Item, E::Item)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator, C: Iterator, D: Iterator, E: Iterator, F: Iterator> Iterator for Zip<(A, B, C, D, E, F)>[src]

type Item = (A::Item, B::Item, C::Item, D::Item, E::Item, F::Item)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator, C: Iterator, D: Iterator, E: Iterator, F: Iterator, G: Iterator> Iterator for Zip<(A, B, C, D, E, F, G)>[src]

type Item = (A::Item, B::Item, C::Item, D::Item, E::Item, F::Item, G::Item)

The type of the elements being iterated over.

impl<A: Iterator, B: Iterator, C: Iterator, D: Iterator, E: Iterator, F: Iterator, G: Iterator, H: Iterator> Iterator for Zip<(A, B, C, D, E, F, G, H)>[src]

type Item = (A::Item, B::Item, C::Item, D::Item, E::Item, F::Item, G::Item, H::Item)

The type of the elements being iterated over.

Auto Trait Implementations

impl<T> RefUnwindSafe for Zip<T> where
    T: RefUnwindSafe

impl<T> Send for Zip<T> where
    T: Send

impl<T> Sync for Zip<T> where
    T: Sync

impl<T> Unpin for Zip<T> where
    T: Unpin

impl<T> UnwindSafe for Zip<T> where
    T: UnwindSafe

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.