Struct sqlx_core_oldapi::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
Auto Trait Implementations§
impl RefUnwindSafe for MssqlValue
impl Send for MssqlValue
impl Sync for MssqlValue
impl Unpin for MssqlValue
impl UnwindSafe for MssqlValue
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