Struct polars_core::utils::NoNull [−][src]
pub struct NoNull<T> { /* fields omitted */ }
Expand description
Just a wrapper structure. Useful for certain impl specializations
This is for instance use to implement
impl<T> FromIterator<T::Native> for NoNull<ChunkedArray<T>>
as Option<T::Native>
was already implemented:
impl<T> FromIterator<Option<T::Native>> for ChunkedArray<T>
Implementations
Trait Implementations
impl<T> FromIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>> where
T: PolarsNumericType,
impl<T> FromIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>> where
T: PolarsNumericType,
Creates a value from an iterator. Read more
Creates a value from an iterator. Read more
impl<T> FromIteratorReversed<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>> where
T: PolarsNumericType,
impl<T> FromIteratorReversed<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>> where
T: PolarsNumericType,
impl<T> FromParallelIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>> where
T: PolarsNumericType,
impl<T> FromParallelIterator<<T as PolarsNumericType>::Native> for NoNull<ChunkedArray<T>> where
T: PolarsNumericType,
Creates an instance of the collection from the parallel iterator par_iter
. Read more