StringArrayRefParallelIterator

Trait StringArrayRefParallelIterator 

Source
pub trait StringArrayRefParallelIterator<'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> StringArrayRefParallelIterator<'data> for StringArray

Implementors§