pub trait ChunkedCollectParIterExt: ParallelIterator {
    // Provided method
    fn collect_ca_with_dtype<B>(self, name: &str, dtype: DataType) -> B
       where B: FromParIterWithDtype<Self::Item>,
             Self: Sized { ... }
}

Provided Methods§

source

fn collect_ca_with_dtype<B>(self, name: &str, dtype: DataType) -> B
where B: FromParIterWithDtype<Self::Item>, Self: Sized,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<I> ChunkedCollectParIterExt for I
where I: ParallelIterator,