Enum leetcode_tui_rs::migrations::ColumnType
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(Arc<dyn Iden, Global>),
Enum {
name: Arc<dyn Iden, Global>,
variants: Vec<Arc<dyn Iden, Global>, Global>,
},
Array(Arc<ColumnType, Global>),
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(Arc<dyn Iden, Global>)
Enum
Array(Arc<ColumnType, Global>)
Cidr
Inet
MacAddr
Implementations§
§impl ColumnType
impl ColumnType
pub fn custom(ty: &str) -> ColumnType
Trait Implementations§
§impl Clone for ColumnType
impl Clone for ColumnType
§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 moresource§impl ColumnTypeTrait for ColumnType
impl ColumnTypeTrait for ColumnType
§impl Debug for ColumnType
impl Debug for ColumnType
§impl PartialEq<ColumnType> for ColumnType
impl PartialEq<ColumnType> for ColumnType
§fn eq(&self, other: &ColumnType) -> bool
fn eq(&self, other: &ColumnType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.Auto Trait Implementations§
impl !RefUnwindSafe for ColumnType
impl Send for ColumnType
impl Sync for ColumnType
impl Unpin for ColumnType
impl !UnwindSafe for ColumnType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more