Trait IteratorCombineErrors

Source
pub trait IteratorCombineErrors<T, E>: Iterator<Item = Result<T, E>>
where E: Error + CombineErrors,
{ // Provided method fn collect_and_combine_errors(self) -> Result<Vec<T>, E> where Self: Sized { ... } }

Provided Methods§

Source

fn collect_and_combine_errors(self) -> Result<Vec<T>, E>
where Self: Sized,

Implementors§

Source§

impl<I, T, E> IteratorCombineErrors<T, E> for I
where I: Iterator<Item = Result<T, E>>, E: Error + CombineErrors,