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§
fn collect_and_combine_errors(self) -> Result<Vec<T>, E>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".