[][src]Trait resiter::oks::GetOks

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

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

Required methods

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

Loading content...

Implementors

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

Loading content...