Enum polars_core::datatypes::AnyValue
source · [−]pub enum AnyValue<'a> {
Show 22 variants
Null,
Boolean(bool),
Utf8(&'a str),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
Float32(f32),
Float64(f64),
Date(i32),
Datetime(i64, TimeUnit, &'a Option<TimeZone>),
Duration(i64, TimeUnit),
Time(i64),
Categorical(u32, &'a RevMapping),
List(Series),
Object(&'a dyn PolarsObjectSafe),
Struct(Vec<AnyValue<'a>>),
Utf8Owned(String),
}
Variants
Null
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.
Date(i32)
A 32-bit date representing the elapsed time since UNIX epoch (1970-01-01) in days (32 bits).
Datetime(i64, TimeUnit, &'a Option<TimeZone>)
A 64-bit date representing the elapsed time since UNIX epoch (1970-01-01) in nanoseconds (64 bits).
Duration(i64, TimeUnit)
Time(i64)
A 64-bit time representing the elapsed time since midnight in nanoseconds
Categorical(u32, &'a RevMapping)
List(Series)
Nested type, contains arrays that are filled with one of the datetypes.
Object(&'a dyn PolarsObjectSafe)
Can be used to fmt and implements Any, so can be downcasted to the proper value type.
Struct(Vec<AnyValue<'a>>)
Utf8Owned(String)
A UTF8 encoded string type.
Implementations
Trait Implementations
sourceimpl From<&'_ AnyValue<'_>> for NaiveDateTime
impl From<&'_ AnyValue<'_>> for NaiveDateTime
sourceimpl PartialOrd<AnyValue<'_>> for AnyValue<'_>
impl PartialOrd<AnyValue<'_>> for AnyValue<'_>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
Only implemented for the same types and physical types!
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<'a> Eq for AnyValue<'a>
Auto Trait Implementations
impl<'a> !RefUnwindSafe for AnyValue<'a>
impl<'a> Send for AnyValue<'a>
impl<'a> Sync for AnyValue<'a>
impl<'a> Unpin for AnyValue<'a>
impl<'a> !UnwindSafe for AnyValue<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more