Enum polars_core::datatypes::DataType [−][src]
pub enum DataType {
Show variants
Boolean,
UInt8,
UInt16,
UInt32,
UInt64,
Int8,
Int16,
Int32,
Int64,
Float32,
Float64,
Utf8,
Date32,
Date64,
Time64(TimeUnit),
List(ArrowDataType),
Duration(TimeUnit),
Object(&'static str),
Null,
Categorical,
}Variants
A 32-bit date representing the elapsed time since UNIX epoch (1970-01-01) in days (32 bits).
A 64-bit date representing the elapsed time since UNIX epoch (1970-01-01) in milliseconds (64 bits).
Time64(TimeUnit)List(ArrowDataType)Duration(TimeUnit)Object(&'static str)A generic type that can be used in a Series
&’static str can be used to determine/set inner type
Implementations
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for DataTypeimpl UnwindSafe for DataTypeBlanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
pub fn vzip(self) -> V