pub trait BooleanArrayIntoParallelIterator {
type Iter: IntoParallelIterator<Item = Option<bool>>;
// Required method
fn into_par_iter(self) -> Self::Iter;
}Required Associated Types§
type Iter: IntoParallelIterator<Item = Option<bool>>
Required Methods§
fn into_par_iter(self) -> Self::Iter
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".