polars::chunked_array::from_iterator_par

Trait ChunkedCollectParIterExt

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

Provided Methods§

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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