pub enum ColumnType {
Show 16 variants
ID,
Address,
AssetId,
Bytes4,
Bytes8,
Bytes32,
ContractId,
Salt,
Int4,
Int8,
UInt4,
UInt8,
Timestamp,
Blob,
ForeignKey,
Jsonb,
}Variants
ID
Address
AssetId
Bytes4
Bytes8
Bytes32
ContractId
Salt
Int4
Int8
UInt4
UInt8
Timestamp
Blob
ForeignKey
Jsonb
Trait Implementations
sourceimpl Clone for ColumnType
impl Clone for ColumnType
sourcefn clone(&self) -> ColumnType
fn clone(&self) -> ColumnType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ColumnType
impl Debug for ColumnType
sourceimpl Display for ColumnType
impl Display for ColumnType
sourceimpl From<&str> for ColumnType
impl From<&str> for ColumnType
sourcefn from(name: &str) -> ColumnType
fn from(name: &str) -> ColumnType
Converts to this type from the input type.
sourceimpl From<ColumnType> for i32
impl From<ColumnType> for i32
sourcefn from(typ: ColumnType) -> i32
fn from(typ: ColumnType) -> i32
Converts to this type from the input type.
sourceimpl From<i32> for ColumnType
impl From<i32> for ColumnType
sourcefn from(num: i32) -> ColumnType
fn from(num: i32) -> ColumnType
Converts to this type from the input type.
sourceimpl PartialEq<ColumnType> for ColumnType
impl PartialEq<ColumnType> for ColumnType
sourcefn eq(&self, other: &ColumnType) -> bool
fn eq(&self, other: &ColumnType) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more