[][src]Struct rayon::range::Iter

pub struct Iter<T> { /* fields omitted */ }

Parallel iterator over a range

Trait Implementations

impl ParallelIterator for Iter<u8>[src]

type Item = u8

impl ParallelIterator for Iter<u16>[src]

type Item = u16

impl ParallelIterator for Iter<u32>[src]

type Item = u32

impl ParallelIterator for Iter<usize>[src]

type Item = usize

impl ParallelIterator for Iter<i8>[src]

type Item = i8

impl ParallelIterator for Iter<i16>[src]

type Item = i16

impl ParallelIterator for Iter<i32>[src]

type Item = i32

impl ParallelIterator for Iter<isize>[src]

type Item = isize

impl ParallelIterator for Iter<u64>[src]

type Item = u64

impl ParallelIterator for Iter<i64>[src]

type Item = i64

impl IndexedParallelIterator for Iter<u8>[src]

impl IndexedParallelIterator for Iter<u16>[src]

impl IndexedParallelIterator for Iter<u32>[src]

impl IndexedParallelIterator for Iter<usize>[src]

impl IndexedParallelIterator for Iter<i8>[src]

impl IndexedParallelIterator for Iter<i16>[src]

impl IndexedParallelIterator for Iter<i32>[src]

impl IndexedParallelIterator for Iter<isize>[src]

Auto Trait Implementations

impl<T> Send for Iter<T> where
    T: Send

impl<T> Sync for Iter<T> where
    T: Sync

impl<T> Unpin for Iter<T> where
    T: Unpin

impl<T> UnwindSafe for Iter<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Iter<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]