Enum nom_sql::SqlType[][src]

pub enum SqlType {
    Bool,
    Char(u16),
    Varchar(u16),
    Int(u16),
    Bigint(u16),
    Tinyint(u16),
    Blob,
    Longblob,
    Mediumblob,
    Tinyblob,
    Double,
    Float,
    Real,
    Tinytext,
    Mediumtext,
    Longtext,
    Text,
    Date,
    DateTime,
    Timestamp,
    Binary(u16),
    Varbinary(u16),
    Enum(Vec<Literal>),
    Decimal(u8u8),
}

Variants

Trait Implementations

impl Clone for SqlType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SqlType
[src]

Formats the value using the given formatter. Read more

impl Eq for SqlType
[src]

impl Hash for SqlType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for SqlType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for SqlType
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SqlType

impl Sync for SqlType