IteratorExt

Trait IteratorExt 

Source
pub trait IteratorExt<R, E>: Iterator<Item = Result<R, E>> {
    // Provided method
    fn try_collect_vec(self) -> Result<Vec<R>, E>
       where Self: Sized { ... }
}

Provided Methods§

Source

fn try_collect_vec(self) -> Result<Vec<R>, E>
where Self: Sized,

Implementors§

Source§

impl<R, E, T: Iterator<Item = Result<R, E>>> IteratorExt<R, E> for T