pub enum DataValue {
Null,
Int32(i32),
Int64(i64),
Float32(f32),
Float64(f64),
Utf8(String),
TimestampMicros(i64),
}Expand description
DataFrame scalar value used by the core cast primitives.
Variants§
Null
Absence of a value.
Int32(i32)
32-bit signed integer.
Int64(i64)
64-bit signed integer.
Float32(f32)
32-bit floating point.
Float64(f64)
64-bit floating point.
Utf8(String)
UTF-8 string.
TimestampMicros(i64)
Timestamp stored as microseconds since the Unix epoch.
Implementations§
Trait Implementations§
impl StructuralPartialEq for DataValue
Auto Trait Implementations§
impl Freeze for DataValue
impl RefUnwindSafe for DataValue
impl Send for DataValue
impl Sync for DataValue
impl Unpin for DataValue
impl UnsafeUnpin for DataValue
impl UnwindSafe for DataValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more