pub trait UnwrapWithExt<I, O, E, F>where
    I: Iterator<Item = Result<O, E>>,
    F: FnMut(E) -> Option<O>,
{ fn unwrap_with(self, _: F) -> UnwrapWith<I, O, E, F> ; }

Required Methods§

Implementors§