pub enum ColumnType {
Show 25 variants
Sequence,
LongSequence,
Byte,
Short,
Int,
Long,
Float,
Double,
Decimal,
Boolean,
Date,
DateTime,
Time,
Timestamp,
TimestampTz,
Char,
Varchar,
Enum,
Text,
CiText,
CsText,
Binary,
Uuid,
Json,
Array,
}Variants§
Sequence
LongSequence
Byte
Short
Int
Long
Float
Double
Decimal
Boolean
Date
DateTime
Time
Timestamp
TimestampTz
Char
Varchar
Enum
Text
CiText
CsText
Binary
Uuid
Json
Array
Implementations§
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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ColumnType
Source§impl Debug for ColumnType
impl Debug for ColumnType
impl Eq for ColumnType
Source§impl Hash for ColumnType
impl Hash for ColumnType
Source§impl PartialEq for ColumnType
impl PartialEq for ColumnType
Source§fn eq(&self, other: &ColumnType) -> bool
fn eq(&self, other: &ColumnType) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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