Trait Items
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;
}
Available on crate feature
__ecma
and (crate features __ecma_transforms
or __testing_transform
) only.Expand description
This is considered as a private type and it’s NOT A PUBLIC API.