Enum msi::ColumnType
[−]
[src]
pub enum ColumnType {
Int16,
Int32,
Str(usize),
}A database column data type.
Variants
Int16A 16-bit integer.
Int32A 32-bit integer.
Str(usize)A string, with the specified maximum length (or zero for no max).
Trait Implementations
impl Clone for ColumnType[src]
fn clone(&self) -> ColumnType
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for ColumnType[src]
impl Debug for ColumnType[src]
impl Eq for ColumnType[src]
impl PartialEq for ColumnType[src]
fn eq(&self, __arg_0: &ColumnType) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ColumnType) -> bool
This method tests for !=.