Enum sea_query::table::ColumnType
source · #[non_exhaustive]
pub enum ColumnType {
Show 36 variants
Char(Option<u32>),
String(Option<u32>),
Text,
TinyInteger,
SmallInteger,
Integer,
BigInteger,
TinyUnsigned,
SmallUnsigned,
Unsigned,
BigUnsigned,
Float,
Double,
Decimal(Option<(u32, u32)>),
DateTime,
Timestamp,
TimestampWithTimeZone,
Time,
Date,
Year(Option<MySqlYear>),
Interval(Option<PgInterval>, Option<u32>),
Binary(BlobSize),
VarBinary(u32),
Bit(Option<u32>),
VarBit(u32),
Boolean,
Money(Option<(u32, u32)>),
Json,
JsonBinary,
Uuid,
Custom(DynIden),
Enum {
name: DynIden,
variants: Vec<DynIden>,
},
Array(SeaRc<ColumnType>),
Cidr,
Inet,
MacAddr,
}
Expand description
All column types
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.
Char(Option<u32>)
String(Option<u32>)
Text
TinyInteger
SmallInteger
Integer
BigInteger
TinyUnsigned
SmallUnsigned
Unsigned
BigUnsigned
Float
Double
Decimal(Option<(u32, u32)>)
DateTime
Timestamp
TimestampWithTimeZone
Time
Date
Year(Option<MySqlYear>)
Interval(Option<PgInterval>, Option<u32>)
Binary(BlobSize)
VarBinary(u32)
Bit(Option<u32>)
VarBit(u32)
Boolean
Money(Option<(u32, u32)>)
Json
JsonBinary
Uuid
Custom(DynIden)
Enum
Array(SeaRc<ColumnType>)
Cidr
Inet
MacAddr
Implementations§
source§impl ColumnType
impl ColumnType
pub fn custom(ty: &str) -> ColumnType
Trait Implementations§
source§impl Clone for ColumnType
impl Clone for ColumnType
source§fn clone(&self) -> ColumnType
fn clone(&self) -> ColumnType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more