pub enum SqlServerType {
Show 15 variants
BigInt,
Int,
SmallInt,
TinyInt,
Bit,
UniqueIdentifier,
Date,
DateTime2,
Decimal,
Float,
Money,
NVarChar,
VarBinary,
RowVersion,
Custom(&'static str),
}Expand description
SQL Server types supported by the metadata layer.
Variants§
BigInt
Int
SmallInt
TinyInt
Bit
UniqueIdentifier
Date
DateTime2
Decimal
Float
Money
NVarChar
VarBinary
RowVersion
Custom(&'static str)
Trait Implementations§
Source§impl Clone for SqlServerType
impl Clone for SqlServerType
Source§fn clone(&self) -> SqlServerType
fn clone(&self) -> SqlServerType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SqlServerType
impl Debug for SqlServerType
Source§impl PartialEq for SqlServerType
impl PartialEq for SqlServerType
Source§fn eq(&self, other: &SqlServerType) -> bool
fn eq(&self, other: &SqlServerType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SqlServerType
impl Eq for SqlServerType
impl StructuralPartialEq for SqlServerType
Auto Trait Implementations§
impl Freeze for SqlServerType
impl RefUnwindSafe for SqlServerType
impl Send for SqlServerType
impl Sync for SqlServerType
impl Unpin for SqlServerType
impl UnsafeUnpin for SqlServerType
impl UnwindSafe for SqlServerType
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