Enum quackdb_internal::type_id::TypeId
source · #[non_exhaustive]pub enum TypeId {
Show 29 variants
Boolean,
TinyInt,
SmallInt,
Integer,
BigInt,
UTinyInt,
USmallInt,
UInteger,
UBigInt,
Float,
Double,
Timestamp,
Date,
Time,
Interval,
HugeInt,
VarChar,
Blob,
Decimal,
TimestampS,
TimestampMs,
TimestampNs,
Enum,
List,
Struct,
Map,
Uuid,
Union,
Bit,
}
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
TinyInt
SmallInt
Integer
BigInt
UTinyInt
USmallInt
UInteger
UBigInt
Float
Double
Timestamp
Date
Time
Interval
HugeInt
VarChar
Blob
Decimal
TimestampS
TimestampMs
TimestampNs
Enum
List
Struct
Map
Uuid
Union
Bit
Implementations§
source§impl TypeId
impl TypeId
pub unsafe fn from_raw(ty: duckdb_type) -> Option<Self>
pub fn to_raw(self) -> duckdb_type
Trait Implementations§
Auto Trait Implementations§
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