FromCondIterator

Trait 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>,

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.

Implementors§

Source§

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