Enum models_parser::ast::DataType[][src]

pub enum DataType {
Show 28 variants Char(Option<u64>), Varchar(Option<u64>), Uuid, Clob(u64), Binary(u64), Varbinary(Option<u64>), Blob(Option<u64>), Decimal(Option<u64>, Option<u64>), Float(Option<u64>), TinyInt(Option<u64>), SmallInt(Option<u64>), Int(Option<u64>), BigInt(Option<u64>), Real, Double, Boolean, Date, Time, Timestamp, Interval, Regclass, Text, String, Bytea, Custom(ObjectName), Array(Box<DataType>), Json, Serial,
}
Expand description

SQL data types

Variants

Char(Option<u64>)

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

Tuple Fields of Char

0: Option<u64>
Varchar(Option<u64>)

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

Tuple Fields of Varchar

0: Option<u64>
Uuid

Uuid type

Clob(u64)

Large character object e.g. CLOB(1000)

Tuple Fields of Clob

0: u64
Binary(u64)

Fixed-length binary type e.g. BINARY(10)

Tuple Fields of Binary

0: u64
Varbinary(Option<u64>)

Variable-length binary type e.g. VARBINARY(10)

Tuple Fields of Varbinary

0: Option<u64>
Blob(Option<u64>)

Large binary object e.g. BLOB(1000)

Tuple Fields of Blob

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

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

Tuple Fields of Decimal

0: Option<u64>1: Option<u64>
Float(Option<u64>)

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

Tuple Fields of Float

0: Option<u64>
TinyInt(Option<u64>)

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

Tuple Fields of TinyInt

0: Option<u64>
SmallInt(Option<u64>)

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

Tuple Fields of SmallInt

0: Option<u64>
Int(Option<u64>)

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

Tuple Fields of Int

0: Option<u64>
BigInt(Option<u64>)

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

Tuple Fields of BigInt

0: Option<u64>
Real

Floating point e.g. REAL

Double

Double e.g. DOUBLE PRECISION

Boolean

Boolean

Date

Date

Time

Time

Timestamp

Timestamp

Interval

Interval

Regclass

Regclass used in postgresql serial

Text

Text

String

String

Bytea

Bytea

Custom(ObjectName)

Custom type such as enums

Tuple Fields of Custom

0: ObjectName
Array(Box<DataType>)

Arrays

Tuple Fields of Array

0: Box<DataType>
Json

JSON

Serial

Serial PostgeSQL type

Implementations

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

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 !=.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.