Skip to main content

BinaryArrayRefParallelIterator

Trait BinaryArrayRefParallelIterator 

Source
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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

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

Implementors§