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
sourceimpl ColumnType
impl ColumnType
pub fn try_from_u16(id: u8) -> Result<Self, Error>
Trait Implementations
sourceimpl Clone for ColumnType
impl Clone for ColumnType
sourcefn clone(&self) -> ColumnType
fn clone(&self) -> ColumnType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ColumnType
impl Debug for ColumnType
sourceimpl<'de> Deserialize<'de> for ColumnType
impl<'de> Deserialize<'de> for ColumnType
sourcefn 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
sourceimpl PartialEq<ColumnType> for ColumnType
impl PartialEq<ColumnType> for ColumnType
sourcefn 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 ==
. Read more
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more