Trait polars::chunked_array::object::ChunkCast[][src]

pub trait ChunkCast {
    fn cast<N>(&self) -> Result<ChunkedArray<N>, PolarsError>
    where
        N: PolarsDataType
;
fn cast_with_dtype(
        &self,
        data_type: &DataType
    ) -> Result<Series, PolarsError>; }
Expand description

Cast ChunkedArray<T> to ChunkedArray<N>

Required methods

Cast ChunkedArray<T> to ChunkedArray<N>

Implementors