FromParallelIterator

Trait FromParallelIterator 

Source
pub trait FromParallelIterator<T>: Sized {
    // Required method
    fn from_par_iter<I>(iter: I) -> Self
       where I: ParallelIterator<Item = T>;
}
Expand description

Trait for collecting from parallel iterators

Required Methods§

Source

fn from_par_iter<I>(iter: I) -> Self
where I: ParallelIterator<Item = T>,

Create from parallel iterator

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> FromParallelIterator<T> for Vec<T>

Source§

fn from_par_iter<I>(iter: I) -> Self
where I: ParallelIterator<Item = T>,

Implementors§