pub trait ParPartitionResult<T, E>: ParallelIterator<Item = Result<T, E>> {
// Provided method
fn partition_result(self) -> (Vec<T>, Vec<E>)
where T: Send,
E: Send { ... }
}Expand description
Extension trait for parallel Result iterators.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".