pub trait Decimal128ArrayRefParallelIterator<'data> {
    type Iter: ParallelIterator<Item = Option<i128>>;

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl<'data> Decimal128ArrayRefParallelIterator<'data> for Decimal128Array

Implementors§