pub enum DataType {
Show 39 variants Char(Option<u64>), Varchar(Option<u64>), Nvarchar(Option<u64>), Uuid, Clob(Option<u64>), Binary(Option<u64>), Varbinary(Option<u64>), Blob(Option<u64>), Decimal(Option<u64>, Option<u64>), Float(Option<u64>), TinyInt(Option<u64>), UnsignedTinyInt(Option<u64>), SmallInt(Option<u64>), UnsignedSmallInt(Option<u64>), MediumInt(Option<u64>), UnsignedMediumInt(Option<u64>), Int(Option<u64>), Integer(Option<u64>), UnsignedInt(Option<u64>), UnsignedInteger(Option<u64>), BigInt(Option<u64>), UnsignedBigInt(Option<u64>), Real, Double, DoublePrecision, Boolean, Date, Time(TimezoneInfo), Datetime, Timestamp(TimezoneInfo), Interval, Regclass, Text, String, Bytea, Custom(ObjectName), Array(Box<DataType, Global>), Enum(Vec<String, Global>), Set(Vec<String, Global>),
}
Expand description

SQL data types

Variants

Char(Option<u64>)

Fixed-length character type e.g. CHAR(10)

Varchar(Option<u64>)

Variable-length character type e.g. VARCHAR(10)

Nvarchar(Option<u64>)

Variable-length character type e.g. NVARCHAR(10)

Uuid

Uuid type

Clob(Option<u64>)

Large character object with optional length e.g. CLOB, CLOB(1000), standard, Oracle

Binary(Option<u64>)

Fixed-length binary type with optional length e.g. standard, MS SQL Server

Varbinary(Option<u64>)

Variable-length binary with optional length type e.g. standard, MS SQL Server

Blob(Option<u64>)

Large binary object with optional length e.g. BLOB, BLOB(1000), standard, Oracle

Decimal(Option<u64>, Option<u64>)

Decimal type with optional precision and scale e.g. DECIMAL(10,2)

Float(Option<u64>)

Floating point with optional precision e.g. FLOAT(8)

TinyInt(Option<u64>)

Tiny integer with optional display width e.g. TINYINT or TINYINT(3)

UnsignedTinyInt(Option<u64>)

Unsigned tiny integer with optional display width e.g. TINYINT UNSIGNED or TINYINT(3) UNSIGNED

SmallInt(Option<u64>)

Small integer with optional display width e.g. SMALLINT or SMALLINT(5)

UnsignedSmallInt(Option<u64>)

Unsigned small integer with optional display width e.g. SMALLINT UNSIGNED or SMALLINT(5) UNSIGNED

MediumInt(Option<u64>)

MySQL medium integer (1) with optional display width e.g. MEDIUMINT or MEDIUMINT(5)

UnsignedMediumInt(Option<u64>)

Unsigned medium integer (1) with optional display width e.g. MEDIUMINT UNSIGNED or MEDIUMINT(5) UNSIGNED

Int(Option<u64>)

Integer with optional display width e.g. INT or INT(11)

Integer(Option<u64>)

Integer with optional display width e.g. INTEGER or INTEGER(11)

UnsignedInt(Option<u64>)

Unsigned integer with optional display width e.g. INT UNSIGNED or INT(11) UNSIGNED

UnsignedInteger(Option<u64>)

Unsigned integer with optional display width e.g. INTGER UNSIGNED or INTEGER(11) UNSIGNED

BigInt(Option<u64>)

Big integer with optional display width e.g. BIGINT or BIGINT(20)

UnsignedBigInt(Option<u64>)

Unsigned big integer with optional display width e.g. BIGINT UNSIGNED or BIGINT(20) UNSIGNED

Real

Floating point e.g. REAL

Double

Double

DoublePrecision

Double PRECISION e.g. standard, postgresql

Boolean

Boolean

Date

Date

Time(TimezoneInfo)

Time

Datetime

Datetime

Timestamp(TimezoneInfo)

Timestamp

Interval

Interval

Regclass

Regclass used in postgresql serial

Text

Text

String

String

Bytea

Bytea

Custom(ObjectName)

Custom type such as enums

Array(Box<DataType, Global>)

Arrays

Enum(Vec<String, Global>)

Enums

Set(Vec<String, Global>)

Set

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

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

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.