#[non_exhaustive]#[repr(u32)]pub enum LogicalTypeId {
Show 41 variants
Invalid = 0,
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,
TimeTZ = 30,
TimestampTZ = 31,
UHugeint = 32,
Array = 33,
Any = 34,
Bignum = 35,
SqlNull = 36,
StringLiteral = 37,
IntegerLiteral = 38,
TimeNs = 39,
Unsupported = 4_294_967_295,
}Expand description
Logical Type Id https://duckdb.org/docs/api/c/types
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.
Invalid = 0
Invalid
Boolean = 1
Boolean
Tinyint = 2
Tinyint
Smallint = 3
Smallint
Integer = 4
Integer
Bigint = 5
Bigint
UTinyint = 6
Unsigned Tinyint
USmallint = 7
Unsigned Smallint
UInteger = 8
Unsigned Integer
UBigint = 9
Unsigned Bigint
Float = 10
Float
Double = 11
Double
Timestamp = 12
Timestamp
Date = 13
Date
Time = 14
Time
Interval = 15
Interval
Hugeint = 16
Hugeint
Varchar = 17
Varchar
Blob = 18
Blob
Decimal = 19
Decimal
TimestampS = 20
Timestamp S
TimestampMs = 21
Timestamp MS
TimestampNs = 22
Timestamp NS
Enum = 23
Enum
List = 24
List
Struct = 25
Struct
Map = 26
Map
Uuid = 27
Uuid
Union = 28
Union
Bit = 29
Bit
TimeTZ = 30
Time TZ
TimestampTZ = 31
Timestamp TZ
UHugeint = 32
Unsigned Hugeint
Array = 33
Array
Any = 34
Any
Bignum = 35
Bignum
SqlNull = 36
SqlNull
StringLiteral = 37
String Literal
IntegerLiteral = 38
Integer Literal
TimeNs = 39
Time NS
Unsupported = 4_294_967_295
DuckDB returned a type that this wrapper does not yet recognize
Trait Implementations§
Source§impl Debug for LogicalTypeId
impl Debug for LogicalTypeId
Source§impl From<LogicalTypeId> for LogicalTypeHandle
impl From<LogicalTypeId> for LogicalTypeHandle
Source§fn from(id: LogicalTypeId) -> Self
fn from(id: LogicalTypeId) -> Self
Create a new LogicalTypeHandle from LogicalTypeId
Source§impl From<u32> for LogicalTypeId
impl From<u32> for LogicalTypeId
Source§impl PartialEq for LogicalTypeId
impl PartialEq for LogicalTypeId
impl Eq for LogicalTypeId
impl StructuralPartialEq for LogicalTypeId
Auto Trait Implementations§
impl Freeze for LogicalTypeId
impl RefUnwindSafe for LogicalTypeId
impl Send for LogicalTypeId
impl Sync for LogicalTypeId
impl Unpin for LogicalTypeId
impl UnwindSafe for LogicalTypeId
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.