pub trait LargeStringArrayRefParallelIterator<'data> {
    type Iter: ParallelIterator<Item = Option<&'data str>>;

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

Required Associated Types§

source

type Iter: ParallelIterator<Item = Option<&'data str>>

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl<'data> LargeStringArrayRefParallelIterator<'data> for LargeStringArray

Implementors§