#[repr(i16)]pub enum ColumnType {
Smallint = 7,
Integer = 8,
Float = 10,
Date = 12,
Time = 13,
Char = 14,
Bigint = 16,
DoublePrecision = 27,
Timestamp = 35,
Varchar = 37,
Blob = 261,
}Variants§
Smallint = 7
Integer = 8
Float = 10
Date = 12
Time = 13
Char = 14
Bigint = 16
DoublePrecision = 27
Timestamp = 35
Varchar = 37
Blob = 261
Trait Implementations§
Source§impl Clone for ColumnType
impl Clone for ColumnType
Source§fn clone(&self) -> ColumnType
fn clone(&self) -> ColumnType
Returns a duplicate 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 Display for ColumnType
impl Display for ColumnType
Source§impl PartialEq for ColumnType
impl PartialEq for ColumnType
Source§impl TryFrom<i16> for ColumnType
impl TryFrom<i16> for ColumnType
Source§type Error = TryFromPrimitiveError<ColumnType>
type Error = TryFromPrimitiveError<ColumnType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ColumnType
impl TryFromPrimitive for ColumnType
impl Eq for ColumnType
impl StructuralPartialEq for ColumnType
Auto Trait Implementations§
impl Freeze for ColumnType
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