[][src]Trait resiter::errors::GetErrors

pub trait GetErrors<T, E>: Sized {
    fn errors(self) -> FilterMap<Self, fn(_: Result<T, E>) -> Option<E>>;
}

Extension trait for Iterator<Item = Result<T, E>> to get all Es

Required methods

fn errors(self) -> FilterMap<Self, fn(_: Result<T, E>) -> Option<E>>

Loading content...

Implementors

impl<T, E, I> GetErrors<T, E> for I where
    I: Iterator<Item = Result<T, E>> + Sized
[src]

Loading content...