UnwrapWithExt

Trait UnwrapWithExt 

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

Required Methods§

Source

fn unwrap_with(self, _: F) -> UnwrapWith<I, O, E, F>

Implementors§

Source§

impl<I, O, E, F> UnwrapWithExt<I, O, E, F> for I
where I: Iterator<Item = Result<O, E>>, F: FnMut(E) -> Option<O>,