#[repr(u16)]pub enum SqlDataTypeKind {
Show 18 variants
Unknown = 0,
FixedChar = 452,
VarChar = 448,
LongVarChar = 456,
NFixedChar = 632,
NVarChar = 636,
LongNVarChar = 640,
Binary = 524,
LongBinary = 528,
U8 = 604,
I16 = 500,
U16 = 616,
I32 = 496,
U32 = 612,
I64 = 608,
U64 = 620,
F32 = 482,
F64 = 480,
}
Expand description
Representation of the SQLDef data type presented to the function These types are derived from sqldef.h
Variants§
Unknown = 0
FixedChar = 452
VarChar = 448
LongVarChar = 456
NFixedChar = 632
NVarChar = 636
LongNVarChar = 640
Binary = 524
LongBinary = 528
U8 = 604
I16 = 500
U16 = 616
I32 = 496
U32 = 612
I64 = 608
U64 = 620
F32 = 482
F64 = 480
Trait Implementations§
Source§impl Clone for SqlDataTypeKind
impl Clone for SqlDataTypeKind
Source§fn clone(&self) -> SqlDataTypeKind
fn clone(&self) -> SqlDataTypeKind
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 SqlDataTypeKind
impl Debug for SqlDataTypeKind
Source§impl Hash for SqlDataTypeKind
impl Hash for SqlDataTypeKind
Source§impl PartialEq for SqlDataTypeKind
impl PartialEq for SqlDataTypeKind
impl Copy for SqlDataTypeKind
impl Eq for SqlDataTypeKind
impl StructuralPartialEq for SqlDataTypeKind
Auto Trait Implementations§
impl Freeze for SqlDataTypeKind
impl RefUnwindSafe for SqlDataTypeKind
impl Send for SqlDataTypeKind
impl Sync for SqlDataTypeKind
impl Unpin for SqlDataTypeKind
impl UnwindSafe for SqlDataTypeKind
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