Struct sqlx_core::mssql::MssqlValue
source · pub struct MssqlValue { /* private fields */ }
Expand description
Implementation of Value
for MSSQL.
Trait Implementations§
source§impl Clone for MssqlValue
impl Clone for MssqlValue
source§fn clone(&self) -> MssqlValue
fn clone(&self) -> MssqlValue
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 From<MssqlValue> for AnyValue
impl From<MssqlValue> for AnyValue
source§fn from(value: MssqlValue) -> Self
fn from(value: MssqlValue) -> Self
Converts to this type from the input type.
source§impl Value for MssqlValue
impl Value for MssqlValue
type Database = Mssql
source§fn as_ref(&self) -> MssqlValueRef<'_>
fn as_ref(&self) -> MssqlValueRef<'_>
Get this value as a reference.
source§fn type_info(&self) -> Cow<'_, MssqlTypeInfo>
fn type_info(&self) -> Cow<'_, MssqlTypeInfo>
Get the type information for this value.
source§fn decode<'r, T>(&'r self) -> Twhere
T: Decode<'r, Self::Database> + Type<Self::Database>,
fn decode<'r, T>(&'r self) -> Twhere T: Decode<'r, Self::Database> + Type<Self::Database>,
Decode this single value into the requested type. Read more
source§fn decode_unchecked<'r, T>(&'r self) -> Twhere
T: Decode<'r, Self::Database>,
fn decode_unchecked<'r, T>(&'r self) -> Twhere T: Decode<'r, Self::Database>,
Decode this single value into the requested type. Read more