pub enum LowCardinalityDataType {
Show 17 variants
UInt8,
UInt16,
UInt32,
UInt64,
Int8,
Int16,
Int32,
Int64,
Float32,
Float64,
String,
FixedString(FixedStringN),
Date,
DateTime(Option<Tz>),
Ipv4,
Ipv6,
Nullable(NullableTypeName),
}Variants§
UInt8
UInt16
UInt32
UInt64
Int8
Int16
Int32
Int64
Float32
Float64
String
FixedString(FixedStringN)
Date
DateTime(Option<Tz>)
Ipv4
Ipv6
Nullable(NullableTypeName)
Trait Implementations§
Source§impl Clone for LowCardinalityDataType
impl Clone for LowCardinalityDataType
Source§fn clone(&self) -> LowCardinalityDataType
fn clone(&self) -> LowCardinalityDataType
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 LowCardinalityDataType
impl Debug for LowCardinalityDataType
Source§impl PartialEq for LowCardinalityDataType
impl PartialEq for LowCardinalityDataType
Source§impl TryFrom<Pair<'_, Rule>> for LowCardinalityDataType
impl TryFrom<Pair<'_, Rule>> for LowCardinalityDataType
impl Eq for LowCardinalityDataType
impl StructuralPartialEq for LowCardinalityDataType
Auto Trait Implementations§
impl Freeze for LowCardinalityDataType
impl RefUnwindSafe for LowCardinalityDataType
impl Send for LowCardinalityDataType
impl Sync for LowCardinalityDataType
impl Unpin for LowCardinalityDataType
impl UnwindSafe for LowCardinalityDataType
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