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

    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