pub enum VariantPrimitiveType {
Show 17 variants
Null = 0,
BooleanTrue = 1,
BooleanFalse = 2,
Int8 = 3,
Int16 = 4,
Int32 = 5,
Int64 = 6,
Double = 7,
Decimal4 = 8,
Decimal8 = 9,
Decimal16 = 10,
Date = 11,
TimestampMicros = 12,
TimestampNtzMicros = 13,
Float = 14,
Binary = 15,
String = 16,
}
Variants§
Null = 0
BooleanTrue = 1
BooleanFalse = 2
Int8 = 3
Int16 = 4
Int32 = 5
Int64 = 6
Double = 7
Decimal4 = 8
Decimal8 = 9
Decimal16 = 10
Date = 11
TimestampMicros = 12
TimestampNtzMicros = 13
Float = 14
Binary = 15
String = 16
Trait Implementations§
Source§impl Clone for VariantPrimitiveType
impl Clone for VariantPrimitiveType
Source§fn clone(&self) -> VariantPrimitiveType
fn clone(&self) -> VariantPrimitiveType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VariantPrimitiveType
impl Debug for VariantPrimitiveType
Source§impl TryFrom<u8> for VariantPrimitiveType
impl TryFrom<u8> for VariantPrimitiveType
impl Copy for VariantPrimitiveType
Auto Trait Implementations§
impl Freeze for VariantPrimitiveType
impl RefUnwindSafe for VariantPrimitiveType
impl Send for VariantPrimitiveType
impl Sync for VariantPrimitiveType
impl Unpin for VariantPrimitiveType
impl UnwindSafe for VariantPrimitiveType
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