pub trait BinaryArrayRefParallelIterator<'data> {
    type Iter: ParallelIterator<Item = Option<&'data [u8]>>;

    // Required method
    fn par_iter(&'data self) -> Self::Iter;
}

Required Associated Types§

source

type Iter: ParallelIterator<Item = Option<&'data [u8]>>

Required Methods§

source

fn par_iter(&'data self) -> Self::Iter

Implementations on Foreign Types§

source§

impl<'data> BinaryArrayRefParallelIterator<'data> for BinaryArray

Implementors§