pub trait LogicalType {
    fn dtype(&self) -> &DataType;
    fn cast(&self, dtype: &DataType) -> PolarsResult<Series>;

    fn get_any_value(&self, _i: usize) -> PolarsResult<AnyValue<'_>> { ... }
    unsafe fn get_any_value_unchecked(&self, _i: usize) -> AnyValue<'_> { ... }
}

Required Methods§

Get data type of ChunkedArray.

Provided Methods§

Gets AnyValue from LogicalType

Safety

Does not do any bound checks.

Implementors§