pub trait IntoParallelIterator: Sized {
// Required method
fn into_par_iter(self) -> ParallelSplittableIterator<Self>;
}Available on crate features
sync and rayon only.Expand description
Converts a SplittableIterator into a rayon::iter::ParallelIterator.
Required Methods§
Sourcefn into_par_iter(self) -> ParallelSplittableIterator<Self>
fn into_par_iter(self) -> ParallelSplittableIterator<Self>
Parallelizes this iterator.
Returns a ParallelSplittableIterator bridge that implements
rayon::iter::ParallelIterator.
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.