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§
fn from_cond_iter<P, S>(cond_iter: CondIterator<P, S>) -> Selfwhere
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.