Enum LogicalTypeId

Source
#[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

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

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<LogicalTypeId> for LogicalTypeHandle

Source§

fn from(id: LogicalTypeId) -> Self

Create a new LogicalTypeHandle from LogicalTypeId

Source§

impl From<u32> for LogicalTypeId

Source§

fn from(value: u32) -> Self

Convert from u32 to LogicalTypeId

Source§

impl PartialEq for LogicalTypeId

Source§

fn eq(&self, other: &LogicalTypeId) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for LogicalTypeId

Source§

impl StructuralPartialEq for LogicalTypeId

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,