#[repr(i16)]pub enum SqlDataType {
SQL_UNKNOWN_TYPE = 0,
SQL_CHAR = 1,
SQL_NUMERIC = 2,
SQL_DECIMAL = 3,
SQL_INTEGER = 4,
SQL_SMALLINT = 5,
SQL_FLOAT = 6,
SQL_REAL = 7,
SQL_DOUBLE = 8,
SQL_DATETIME = 9,
SQL_VARCHAR = 12,
}Expand description
SQL Data Types
Variants§
SQL_UNKNOWN_TYPE = 0
SQL_CHAR = 1
SQL_NUMERIC = 2
SQL_DECIMAL = 3
SQL_INTEGER = 4
SQL_SMALLINT = 5
SQL_FLOAT = 6
SQL_REAL = 7
SQL_DOUBLE = 8
SQL_DATETIME = 9
SQL_VARCHAR = 12
Trait Implementations§
Source§impl Clone for SqlDataType
impl Clone for SqlDataType
Source§fn clone(&self) -> SqlDataType
fn clone(&self) -> SqlDataType
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 SqlDataType
impl Debug for SqlDataType
Source§impl PartialEq for SqlDataType
impl PartialEq for SqlDataType
impl Copy for SqlDataType
impl Eq for SqlDataType
impl StructuralPartialEq for SqlDataType
Auto Trait Implementations§
impl Freeze for SqlDataType
impl RefUnwindSafe for SqlDataType
impl Send for SqlDataType
impl Sync for SqlDataType
impl Unpin for SqlDataType
impl UnwindSafe for SqlDataType
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