pub enum TypeName {
Show 33 variants
UInt8,
UInt16,
UInt32,
UInt64,
UInt256,
Int8,
Int16,
Int32,
Int64,
Int128,
Int256,
Float32,
Float64,
Decimal(DecimalPrecision, DecimalScale),
String,
FixedString(FixedStringN),
Uuid,
Date,
DateTime(Option<Tz>),
DateTime64(DateTime64Precision, Option<Tz>),
Enum8(Enum8),
Enum16(Enum16),
Ipv4,
Ipv6,
LowCardinality(LowCardinalityDataType),
Nullable(NullableTypeName),
Point,
Ring,
Polygon,
MultiPolygon,
Array(Box<Self>),
Tuple(Vec<Self>),
Map(MapKey, MapValue),
}Variants§
UInt8
UInt16
UInt32
UInt64
UInt256
Int8
Int16
Int32
Int64
Int128
Int256
Float32
Float64
Decimal(DecimalPrecision, DecimalScale)
String
FixedString(FixedStringN)
Uuid
Date
DateTime(Option<Tz>)
DateTime64(DateTime64Precision, Option<Tz>)
Enum8(Enum8)
Enum16(Enum16)
Ipv4
Ipv6
LowCardinality(LowCardinalityDataType)
Nullable(NullableTypeName)
Point
Ring
Polygon
MultiPolygon
Array(Box<Self>)
Tuple(Vec<Self>)
Map(MapKey, MapValue)
Trait Implementations§
impl Eq for TypeName
impl StructuralPartialEq for TypeName
Auto Trait Implementations§
impl Freeze for TypeName
impl RefUnwindSafe for TypeName
impl Send for TypeName
impl Sync for TypeName
impl Unpin for TypeName
impl UnwindSafe for TypeName
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