#[non_exhaustive]#[repr(u32)]pub enum TypeId {
Show 29 variants
Boolean = 1,
TinyInt = 2,
SmallInt = 3,
Integer = 4,
BigInt = 5,
UTinyInt = 6,
USmallInt = 7,
UInteger = 8,
UBigInt = 9,
Float = 10,
Double = 11,
Timestamp = 12,
Date = 13,
Time = 14,
Interval = 15,
HugeInt = 16,
VarChar = 17,
Blob = 18,
Decimal = 19,
TimestampS = 20,
TimestampMs = 21,
TimestampNs = 22,
Enum = 23,
List = 24,
Struct = 25,
Map = 26,
Uuid = 27,
Union = 28,
Bit = 29,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Boolean = 1
TinyInt = 2
SmallInt = 3
Integer = 4
BigInt = 5
UTinyInt = 6
USmallInt = 7
UInteger = 8
UBigInt = 9
Float = 10
Double = 11
Timestamp = 12
Date = 13
Time = 14
Interval = 15
HugeInt = 16
VarChar = 17
Blob = 18
Decimal = 19
TimestampS = 20
TimestampMs = 21
TimestampNs = 22
Enum = 23
List = 24
Struct = 25
Map = 26
Uuid = 27
Union = 28
Bit = 29
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeId
impl RefUnwindSafe for TypeId
impl Send for TypeId
impl Sync for TypeId
impl Unpin for TypeId
impl UnwindSafe for TypeId
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