pub enum DataTypeKind {
Show 13 variants
Blob,
Boolean,
Date,
DateTime,
Decimal,
Int32,
Int64,
Json,
Principal,
Text,
Uint32,
Uint64,
Uuid,
}Expand description
An enumeration of all supported data type kinds in the DBMS.
Variants§
Trait Implementations§
Source§impl CandidType for DataTypeKind
impl CandidType for DataTypeKind
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<'de> Deserialize<'de> for DataTypeKind
impl<'de> Deserialize<'de> for DataTypeKind
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 Hash for DataTypeKind
impl Hash for DataTypeKind
Source§impl PartialEq for DataTypeKind
impl PartialEq for DataTypeKind
Source§impl Serialize for DataTypeKind
impl Serialize 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