Struct iterator_ext::TryFlatMap[][src]

pub struct TryFlatMap<I, F, J> { /* fields omitted */ }

Trait Implementations

impl<I: Debug, F: Debug, J: Debug> Debug for TryFlatMap<I, F, J>[src]

impl<I, F, J, T, U, V, E> Iterator for TryFlatMap<I, F, J> where
    I: Iterator<Item = Result<T, E>>,
    J: Iterator<Item = Result<V, E>>,
    F: FnMut(T) -> Result<U, E>,
    U: IntoIterator<Item = Result<V, E>, IntoIter = J>, 
[src]

type Item = Result<V, E>

The type of the elements being iterated over.

Auto Trait Implementations

impl<I, F, J> RefUnwindSafe for TryFlatMap<I, F, J> where
    F: RefUnwindSafe,
    I: RefUnwindSafe,
    J: RefUnwindSafe

impl<I, F, J> Send for TryFlatMap<I, F, J> where
    F: Send,
    I: Send,
    J: Send

impl<I, F, J> Sync for TryFlatMap<I, F, J> where
    F: Sync,
    I: Sync,
    J: Sync

impl<I, F, J> Unpin for TryFlatMap<I, F, J> where
    F: Unpin,
    I: Unpin,
    J: Unpin

impl<I, F, J> UnwindSafe for TryFlatMap<I, F, J> where
    F: UnwindSafe,
    I: UnwindSafe,
    J: 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.