Enum stry_common::utils::iter::ChainIf[][src]

pub enum ChainIf<O, C> where
    O: IntoIterator,
    C: IntoIterator<Item = O::Item>, 
{ Chained(O::IntoIter, C::IntoIter), Original(O::IntoIter), }

An iterator that conditionally chains together other iterators.

This enum is created by the IteratorExt::chain_if and IteratorExt::chain_if_with functions.

Variants

Chained(O::IntoIter, C::IntoIter)
Original(O::IntoIter)

Trait Implementations

impl<O, C> Iterator for ChainIf<O, C> where
    O: IntoIterator,
    C: IntoIterator<Item = O::Item>, 
[src]

type Item = O::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<O, C> RefUnwindSafe for ChainIf<O, C> where
    <C as IntoIterator>::IntoIter: RefUnwindSafe,
    <O as IntoIterator>::IntoIter: RefUnwindSafe

impl<O, C> Send for ChainIf<O, C> where
    <C as IntoIterator>::IntoIter: Send,
    <O as IntoIterator>::IntoIter: Send

impl<O, C> Sync for ChainIf<O, C> where
    <C as IntoIterator>::IntoIter: Sync,
    <O as IntoIterator>::IntoIter: Sync

impl<O, C> Unpin for ChainIf<O, C> where
    <C as IntoIterator>::IntoIter: Unpin,
    <O as IntoIterator>::IntoIter: Unpin

impl<O, C> UnwindSafe for ChainIf<O, C> where
    <C as IntoIterator>::IntoIter: UnwindSafe,
    <O as IntoIterator>::IntoIter: 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<I> IteratorRandom for I where
    I: Iterator
[src]

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<V, T> VZip<V> for T where
    V: MultiLane<T>,