Skip to main content

BooleanArrayIntoParallelIterator

Trait BooleanArrayIntoParallelIterator 

Source
pub trait BooleanArrayIntoParallelIterator {
    type Iter: IntoParallelIterator<Item = Option<bool>>;

    // Required method
    fn into_par_iter(self) -> Self::Iter;
}

Required Associated Types§

Required Methods§

Source

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".

Implementations on Foreign Types§

Source§

impl BooleanArrayIntoParallelIterator for BooleanArray

Implementors§