pub trait Items: IntoParallelIterator<Iter = Self::ParIter> + IntoIterator<Item = Self::Elem> {
type Elem: Send + Sync;
type ParIter: ParallelIterator<Item = Self::Elem> + IndexedParallelIterator;
// Required method
fn len(&self) -> usize;
}
Expand description
This is considered as a private type and it’s NOT A PUBLIC API.