[][src]Struct rayon::slice::IterMut

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

Parallel iterator over mutable items in a slice

Trait Implementations

impl<'data, T: Send + 'data> ParallelIterator for IterMut<'data, T>[src]

type Item = &'data mut T

impl<'data, T: Send + 'data> IndexedParallelIterator for IterMut<'data, T>[src]

Auto Trait Implementations

impl<'data, T> Send for IterMut<'data, T>

impl<'data, T> Sync for IterMut<'data, T> where
    T: Sync

impl<'data, T> Unpin for IterMut<'data, T>

impl<'data, T> !UnwindSafe for IterMut<'data, T>

impl<'data, T> RefUnwindSafe for IterMut<'data, T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> IntoParallelIterator for T where
    T: ParallelIterator
[src]

type Iter = T

type Item = <T as ParallelIterator>::Item

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]