[][src]Struct rayon::iter::MinLen

#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
pub struct MinLen<I: IndexedParallelIterator> { /* fields omitted */ }

MinLen is an iterator that imposes a minimum length on iterator splits. This struct is created by the min_len() method on IndexedParallelIterator

Trait Implementations

impl<I> ParallelIterator for MinLen<I> where
    I: IndexedParallelIterator
[src]

type Item = I::Item

impl<I> IndexedParallelIterator for MinLen<I> where
    I: IndexedParallelIterator
[src]

Auto Trait Implementations

impl<I> Send for MinLen<I>

impl<I> Sync for MinLen<I> where
    I: Sync

impl<I> Unpin for MinLen<I> where
    I: Unpin

impl<I> UnwindSafe for MinLen<I> where
    I: UnwindSafe

impl<I> RefUnwindSafe for MinLen<I> where
    I: 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]