Struct rayon::par_iter::slice_mut::SliceMutProducer [] [src]

pub struct SliceMutProducer<'data, T: 'data + Send> {
    // some fields omitted
}

Trait Implementations

impl<'data, T: 'data + Send> Producer for SliceMutProducer<'data, T>
[src]

Cost to produce len items, where len must be N.

Split into two producers; one produces items 0..index, the other index..N. Index must be less than N. Read more

impl<'data, T: 'data + Send> IntoIterator for SliceMutProducer<'data, T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more