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> ⓘ; }