pub trait IntoParChunkIterator {
type Item: Send;
type IterType: IndexedParallelIterator<Item = Self::Item>;
// Required method
fn into_par_chunk_iter(self, chunk_size: usize) -> Self::IterType;
}Expand description
Parallel version of IntoChunkIterator.