pub trait ChunkedCollectInferIterExt<T: PolarsDataType>: Iterator + Sized {
    // Provided methods
    fn collect_ca(self, name: &str) -> ChunkedArray<T>
       where T::Array: ArrayFromIter<Self::Item> { ... }
    fn collect_ca_trusted(self, name: &str) -> ChunkedArray<T>
       where T::Array: ArrayFromIter<Self::Item>,
             Self: TrustedLen { ... }
    fn try_collect_ca<U, E>(self, name: &str) -> Result<ChunkedArray<T>, E>
       where T::Array: ArrayFromIter<U>,
             Self: Iterator<Item = Result<U, E>> { ... }
    fn try_collect_ca_trusted<U, E>(
        self,
        name: &str
    ) -> Result<ChunkedArray<T>, E>
       where T::Array: ArrayFromIter<U>,
             Self: Iterator<Item = Result<U, E>> + TrustedLen { ... }
}

Provided Methods§

source

fn collect_ca(self, name: &str) -> ChunkedArray<T>
where T::Array: ArrayFromIter<Self::Item>,

source

fn collect_ca_trusted(self, name: &str) -> ChunkedArray<T>
where T::Array: ArrayFromIter<Self::Item>, Self: TrustedLen,

source

fn try_collect_ca<U, E>(self, name: &str) -> Result<ChunkedArray<T>, E>
where T::Array: ArrayFromIter<U>, Self: Iterator<Item = Result<U, E>>,

source

fn try_collect_ca_trusted<U, E>(self, name: &str) -> Result<ChunkedArray<T>, E>
where T::Array: ArrayFromIter<U>, Self: Iterator<Item = Result<U, E>> + TrustedLen,

Object Safety§

This trait is not object safe.

Implementors§