pub trait Items: IntoParallelIterator<Iter = Self::ParIter> + IntoIterator<Item = Self::Elem> {
    type Elem: Send + Sync;
    type ParIter: ParallelIterator<Item = Self::Elem> + IndexedParallelIterator;

    fn len(&self) -> usize;
}
Expand description

This is considered as a private type and it’s NOT A PUBLIC API.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§