Trait stdcli::prelude::rayon::iter::IntoParallelRefMutIterator [] [src]

pub trait IntoParallelRefMutIterator<'data> where
    <Self::Iter as ParallelIterator>::Item == Self::Item
{ type Iter: ParallelIterator; type Item: 'data + Send; fn par_iter_mut(&'data mut self) -> Self::Iter; }

IntoParallelRefMutIterator implements the conversion to a ParallelIterator, providing mutable references to the data.

This is a parallel version of the iter_mut() method defined by various collections.

This trait is automatically implemented for I where &mut I: IntoParallelIterator. In most cases, users will want to implement IntoParallelIterator rather than implement this trait directly.

Associated Types

Required Methods

Implementors