Enum polars_core::datatypes::AnyValue [−][src]
pub enum AnyValue<'a> {
}Variants
Boolean(bool)A binary true or false.
Utf8(&'a str)A UTF8 encoded string type.
UInt8(u8)An unsigned 8-bit integer number.
UInt16(u16)An unsigned 16-bit integer number.
UInt32(u32)An unsigned 32-bit integer number.
UInt64(u64)An unsigned 64-bit integer number.
Int8(i8)An 8-bit integer number.
Int16(i16)A 16-bit integer number.
Int32(i32)A 32-bit integer number.
Int64(i64)A 64-bit integer number.
Float32(f32)A 32-bit floating point number.
Float64(f64)A 64-bit floating point number.
Date32(i32)A 32-bit date representing the elapsed time since UNIX epoch (1970-01-01) in days (32 bits).
Date64(i64)A 64-bit date representing the elapsed time since UNIX epoch (1970-01-01) in milliseconds (64 bits).
A 64-bit time representing the elapsed time since midnight in the unit of TimeUnit.
A 32-bit time representing the elapsed time since midnight in the unit of TimeUnit.
List(Series)Naive Time elapsed from the Unix epoch, 00:00:00.000 on 1 January 1970, excluding leap seconds, as a 64-bit integer. Note that UNIX time does not include leap seconds.
Object(&'a str)Use as_any to get a dyn Any
Implementations
Trait Implementations
Only implemented for the same types and physical types!
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl<'a> !RefUnwindSafe for AnyValue<'a>impl<'a> !UnwindSafe for AnyValue<'a>Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V