pub enum TdsDataType {
Show 19 variants
Null = 31,
Int1 = 48,
Bit = 50,
Int2 = 52,
Int4 = 56,
DatetimeN = 111,
Float8 = 62,
Money = 60,
DateTime = 61,
Float4 = 59,
Money4 = 122,
Int8 = 127,
BitN = 104,
IntN = 38,
FloatN = 109,
NVarChar = 231,
VarChar = 167,
Binary = 173,
VarBinary = 165,
}Expand description
SQL Server data types (TDS type codes)
Variants§
Null = 31
Int1 = 48
Bit = 50
Int2 = 52
Int4 = 56
DatetimeN = 111
Float8 = 62
Money = 60
DateTime = 61
Float4 = 59
Money4 = 122
Int8 = 127
BitN = 104
IntN = 38
FloatN = 109
NVarChar = 231
VarChar = 167
Binary = 173
VarBinary = 165
Trait Implementations§
Source§impl Clone for TdsDataType
impl Clone for TdsDataType
Source§fn clone(&self) -> TdsDataType
fn clone(&self) -> TdsDataType
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 TdsDataType
impl Debug for TdsDataType
Source§impl PartialEq for TdsDataType
impl PartialEq for TdsDataType
impl StructuralPartialEq for TdsDataType
Auto Trait Implementations§
impl Freeze for TdsDataType
impl RefUnwindSafe for TdsDataType
impl Send for TdsDataType
impl Sync for TdsDataType
impl Unpin for TdsDataType
impl UnwindSafe for TdsDataType
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