pub trait GetErrors<T, E>: Sized {
// Required method
fn errors(self) -> FilterMap<Self, fn(Result<T, E>) -> Option<E>>;
}Expand description
Extension trait for Iterator<Item = Result<T, E>> to get all Es
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.