Enum rbdc_mysql::protocol::text::ColumnType
source · #[repr(u8)]pub enum ColumnType {
Show 27 variants
Decimal,
Tiny,
Short,
Long,
Float,
Double,
Null,
Timestamp,
LongLong,
Int24,
Date,
Time,
Datetime,
Year,
VarChar,
Bit,
Json,
NewDecimal,
Enum,
Set,
TinyBlob,
MediumBlob,
LongBlob,
Blob,
VarString,
String,
Geometry,
}
Variants§
Decimal
Tiny
Short
Long
Float
Double
Null
Timestamp
LongLong
Int24
Date
Time
Datetime
Year
VarChar
Bit
Json
NewDecimal
Enum
Set
TinyBlob
MediumBlob
LongBlob
Blob
VarString
String
Geometry
Implementations§
source§impl ColumnType
impl ColumnType
pub fn try_from_u16(id: u8) -> Result<Self, Error>
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 moresource§impl Debug for ColumnType
impl Debug for ColumnType
source§impl<'de> Deserialize<'de> for ColumnType
impl<'de> Deserialize<'de> for ColumnType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ColumnType> for ColumnType
impl PartialEq<ColumnType> for ColumnType
source§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 ==
.source§impl Serialize for ColumnType
impl Serialize for ColumnType
impl Copy for ColumnType
impl StructuralPartialEq for ColumnType
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