pub trait PolarsPhysicalType: PolarsDataType {
// Required method
fn ca_into_series(ca: ChunkedArray<Self>) -> Series;
}Required Methods§
fn ca_into_series(ca: ChunkedArray<Self>) -> Series
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§
impl PolarsPhysicalType for BinaryOffsetType
impl PolarsPhysicalType for BinaryType
impl PolarsPhysicalType for BooleanType
impl PolarsPhysicalType for FixedSizeListType
impl PolarsPhysicalType for Float32Type
impl PolarsPhysicalType for Float64Type
impl PolarsPhysicalType for Int8Type
impl PolarsPhysicalType for Int16Type
impl PolarsPhysicalType for Int32Type
impl PolarsPhysicalType for Int64Type
impl PolarsPhysicalType for Int128Type
impl PolarsPhysicalType for ListType
impl PolarsPhysicalType for StringType
impl PolarsPhysicalType for UInt8Type
impl PolarsPhysicalType for UInt16Type
impl PolarsPhysicalType for UInt32Type
impl PolarsPhysicalType for UInt64Type
impl<T: PolarsObject> PolarsPhysicalType for ObjectType<T>
Available on crate feature
object only.