Trait rayon::iter::FromParallelIterator [] [src]

pub trait FromParallelIterator<T> where
    T: Send
{ fn from_par_iter<I>(par_iter: I) -> Self
    where
        I: IntoParallelIterator<Item = T>
; }

FromParallelIterator implements the conversion from a ParallelIterator. By implementing FromParallelIterator for a type, you define how it will be created from an iterator.

FromParallelIterator is used through ParallelIterator's collect() method.

Required Methods

Implementors