pub trait BooleanArrayIntoParallelIterator {
type Iter: IntoParallelIterator<Item = Option<bool>>;
// Required method
fn into_par_iter(self) -> Self::Iter;
}pub trait BooleanArrayIntoParallelIterator {
type Iter: IntoParallelIterator<Item = Option<bool>>;
// Required method
fn into_par_iter(self) -> Self::Iter;
}