pub enum DataTypeKind {
Show 13 variants
Blob,
Boolean,
Date,
DateTime,
Decimal,
Int32,
Int64,
Json,
Text,
Uint32,
Uint64,
Uuid,
Custom(&'static str),
}Expand description
An enumeration of all supported data type kinds in the DBMS.
Variants§
Trait Implementations§
Source§impl Clone for DataTypeKind
impl Clone for DataTypeKind
Source§fn clone(&self) -> DataTypeKind
fn clone(&self) -> DataTypeKind
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 DataTypeKind
impl Debug for DataTypeKind
Source§impl From<DataTypeKind> for CandidDataTypeKind
impl From<DataTypeKind> for CandidDataTypeKind
Source§fn from(kind: DataTypeKind) -> Self
fn from(kind: DataTypeKind) -> Self
Converts to this type from the input type.
Source§impl Hash for DataTypeKind
impl Hash for DataTypeKind
Source§impl PartialEq for DataTypeKind
impl PartialEq for DataTypeKind
impl Copy for DataTypeKind
impl Eq for DataTypeKind
impl StructuralPartialEq for DataTypeKind
Auto Trait Implementations§
impl Freeze for DataTypeKind
impl RefUnwindSafe for DataTypeKind
impl Send for DataTypeKind
impl Sync for DataTypeKind
impl Unpin for DataTypeKind
impl UnsafeUnpin for DataTypeKind
impl UnwindSafe for DataTypeKind
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