Trait rayon_cond::FromCondIterator

source ·
pub trait FromCondIterator<T>: FromParallelIterator<T> + FromIterator<T>
where T: Send,
{ // Provided method fn from_cond_iter<P, S>(cond_iter: CondIterator<P, S>) -> Self where P: ParallelIterator<Item = T>, S: Iterator<Item = T> { ... } }

Provided Methods§

source

fn from_cond_iter<P, S>(cond_iter: CondIterator<P, S>) -> Self
where P: ParallelIterator<Item = T>, S: Iterator<Item = T>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<C, T> FromCondIterator<T> for C
where C: FromParallelIterator<T> + FromIterator<T>, T: Send,