pub enum ColumnType {
Show 23 variants
ID,
Address,
AssetId,
Bytes4,
Bytes8,
Bytes32,
ContractId,
Salt,
Int4,
Int8,
UInt4,
UInt8,
Timestamp,
Blob,
ForeignKey,
Json,
MessageId,
Charfield,
Identity,
Boolean,
Object,
UInt16,
Int16,
}Variants§
ID
Address
AssetId
Bytes4
Bytes8
Bytes32
ContractId
Salt
Int4
Int8
UInt4
UInt8
Timestamp
Blob
ForeignKey
Json
MessageId
Charfield
Identity
Boolean
Object
UInt16
Int16
Trait Implementations§
source§impl Clone for ColumnType
impl Clone for ColumnType
source§fn clone(&self) -> ColumnType
fn clone(&self) -> ColumnType
Returns a copy 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 From<&str> for ColumnType
impl From<&str> for ColumnType
source§fn from(name: &str) -> ColumnType
fn from(name: &str) -> ColumnType
Converts to this type from the input type.
source§impl From<ColumnType> for i32
impl From<ColumnType> for i32
source§fn from(typ: ColumnType) -> i32
fn from(typ: ColumnType) -> i32
Converts to this type from the input type.
source§impl From<i32> for ColumnType
impl From<i32> for ColumnType
source§fn from(num: i32) -> ColumnType
fn from(num: i32) -> ColumnType
Converts to this type from the input type.
source§impl PartialEq<ColumnType> for ColumnType
impl PartialEq<ColumnType> for ColumnType
source§fn 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 ==.impl Copy for ColumnType
impl Eq for ColumnType
impl StructuralEq 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§
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