pub enum Type {
Show 42 variants Serial, Bit(NumericAttr), TinyInt(NumericAttr), Bool, SmallInt(NumericAttr), MediumInt(NumericAttr), Int(NumericAttr), BigInt(NumericAttr), Decimal(NumericAttr), Float(NumericAttr), Double(NumericAttr), Date, Time(TimeAttr), DateTime(TimeAttr), Timestamp(TimeAttr), Year, Char(StringAttr), NChar(StringAttr), Varchar(StringAttr), NVarchar(StringAttr), Binary(StringAttr), Varbinary(StringAttr), Text(StringAttr), TinyText(StringAttr), MediumText(StringAttr), LongText(StringAttr), Blob(BlobAttr), TinyBlob, MediumBlob, LongBlob, Enum(EnumDef), Set(SetDef), Geometry(GeometryAttr), Point(GeometryAttr), LineString(GeometryAttr), Polygon(GeometryAttr), MultiPoint(GeometryAttr), MultiLineString(GeometryAttr), MultiPolygon(GeometryAttr), GeometryCollection(GeometryAttr), Json, Unknown(String),
}
Available on crate features mysql and def only.
Expand description

All built-in types of MySQL, excluding synonyms

Variants

Serial

Bit(NumericAttr)

TinyInt(NumericAttr)

Bool

SmallInt(NumericAttr)

MediumInt(NumericAttr)

Int(NumericAttr)

BigInt(NumericAttr)

Decimal(NumericAttr)

Float(NumericAttr)

Double(NumericAttr)

Date

Time(TimeAttr)

DateTime(TimeAttr)

Timestamp(TimeAttr)

Year

Char(StringAttr)

NChar(StringAttr)

Varchar(StringAttr)

NVarchar(StringAttr)

Binary(StringAttr)

Varbinary(StringAttr)

Text(StringAttr)

TinyText(StringAttr)

MediumText(StringAttr)

LongText(StringAttr)

Blob(BlobAttr)

TinyBlob

MediumBlob

LongBlob

Enum(EnumDef)

Set(SetDef)

Geometry(GeometryAttr)

Point(GeometryAttr)

LineString(GeometryAttr)

Polygon(GeometryAttr)

MultiPoint(GeometryAttr)

MultiLineString(GeometryAttr)

MultiPolygon(GeometryAttr)

GeometryCollection(GeometryAttr)

Json

Unknown(String)

Implementations

Available on crate feature writer only.
Available on crate feature writer only.
Available on crate feature writer only.
Available on crate feature writer only.
Available on crate feature writer only.
Available on crate feature writer only.
Available on crate feature writer only.

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

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

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 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

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.