pub trait IntoParallelIter<'data, DiscQ, T>{
type IntoItem;
// Required method
fn into_parallel_iter(self) -> ParallelIterator<DiscQ, Self::IntoItem>;
}Expand description
IntoParallelIter gives a version of ParallelIterator that is expected to capture the .into_iter output for those that implement the same like Vec, HashMap and so on.
Required Associated Types§
Required Methods§
fn into_parallel_iter(self) -> ParallelIterator<DiscQ, Self::IntoItem>
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.