pub enum TvpWireType {
}Expand description
TVP column type for wire encoding.
Variants§
Bit
BIT type.
Int
Integer type with size (1, 2, 4, or 8 bytes).
Float
Floating point type with size (4 or 8 bytes).
Decimal
Decimal/Numeric type.
NVarChar
Unicode string (NVARCHAR).
VarChar
ASCII string (VARCHAR).
VarBinary
Binary data (VARBINARY).
Guid
UNIQUEIDENTIFIER (UUID).
Date
DATE type.
Time
TIME type with scale.
DateTime2
DATETIME2 type with scale.
DateTimeOffset
DATETIMEOFFSET type with scale.
Xml
XML type.
Implementations§
Source§impl TvpWireType
impl TvpWireType
Trait Implementations§
Source§impl Clone for TvpWireType
impl Clone for TvpWireType
Source§fn clone(&self) -> TvpWireType
fn clone(&self) -> TvpWireType
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 TvpWireType
impl Debug for TvpWireType
Source§impl PartialEq for TvpWireType
impl PartialEq for TvpWireType
impl Copy for TvpWireType
impl Eq for TvpWireType
impl StructuralPartialEq for TvpWireType
Auto Trait Implementations§
impl Freeze for TvpWireType
impl RefUnwindSafe for TvpWireType
impl Send for TvpWireType
impl Sync for TvpWireType
impl Unpin for TvpWireType
impl UnwindSafe for TvpWireType
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