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 { ... }
}
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 { ... }
}