[][src]Struct dotrix_ecs::Zipper

pub struct Zipper<'w, T> { /* fields omitted */ }

Iterator converting a tuple of iterators into the Iterator of a tuple

Trait Implementations

impl<'w, A, B, C, D> Iterator for Zipper<'w, (A, B, C, D)> where
    A: Iterator + 'w,
    B: Iterator + 'w,
    C: Iterator + 'w,
    D: Iterator + 'w, 
[src]

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

The type of the elements being iterated over.

impl<'w, B, C, D> Iterator for Zipper<'w, (B, C, D)> where
    B: Iterator + 'w,
    C: Iterator + 'w,
    D: Iterator + 'w, 
[src]

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

The type of the elements being iterated over.

impl<'w, C, D> Iterator for Zipper<'w, (C, D)> where
    C: Iterator + 'w,
    D: Iterator + 'w, 
[src]

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

The type of the elements being iterated over.

impl<'w, D> Iterator for Zipper<'w, (D,)> where
    D: Iterator + 'w, 
[src]

type Item = (D::Item,)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'w, T> RefUnwindSafe for Zipper<'w, T> where
    T: RefUnwindSafe

impl<'w, T> Send for Zipper<'w, T> where
    T: Send

impl<'w, T> Sync for Zipper<'w, T> where
    T: Sync

impl<'w, T> Unpin for Zipper<'w, T> where
    T: Unpin

impl<'w, T> UnwindSafe for Zipper<'w, 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.