pub trait FromParallelIterator<T>: Sized {
// Required method
fn from_par_iter<I>(iter: I) -> Self
where I: ParallelIterator<Item = T>;
}Expand description
Trait for collecting from parallel iterators
Required Methods§
Sourcefn from_par_iter<I>(iter: I) -> Selfwhere
I: ParallelIterator<Item = T>,
fn from_par_iter<I>(iter: I) -> Selfwhere
I: ParallelIterator<Item = T>,
Create from parallel iterator
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.