[][src]Struct swc_common::util::iter::ChainWith

pub struct ChainWith<B, F, I> { /* fields omitted */ }

Trait Implementations

impl<B, F, I> Iterator for ChainWith<B, F, I::IntoIter> where
    B: Iterator,
    F: FnOnce() -> I,
    I: IntoIterator<Item = B::Item>, 
[src]

type Item = I::Item

The type of the elements being iterated over.

Auto Trait Implementations

impl<B, F, I> RefUnwindSafe for ChainWith<B, F, I> where
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    I: RefUnwindSafe

impl<B, F, I> Send for ChainWith<B, F, I> where
    B: Send,
    F: Send,
    I: Send

impl<B, F, I> Sync for ChainWith<B, F, I> where
    B: Sync,
    F: Sync,
    I: Sync

impl<B, F, I> Unpin for ChainWith<B, F, I> where
    B: Unpin,
    F: Unpin,
    I: Unpin

impl<B, F, I> UnwindSafe for ChainWith<B, F, I> where
    B: UnwindSafe,
    F: UnwindSafe,
    I: 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> Erased for T

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<It> IdentifyLast for It where
    It: Iterator
[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> IteratorExt for I where
    I: Iterator
[src]

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.