Trait IntoMaybeParallelRefMutIterator

Source
pub trait IntoMaybeParallelRefMutIterator<'a> {
    type Iter: Iterator;

    // Required method
    fn maybe_par_iter_mut(&'a mut self) -> MaybeParallelIterator<Self::Iter>;
}
Expand description

Like IntoMaybeParallelIterator but borrows mutably.

Required Associated Types§

Required Methods§

Implementors§