Struct sqlx_core::mssql::MssqlArguments
source · pub struct MssqlArguments { /* private fields */ }
Trait Implementations§
source§impl<'q> Arguments<'q> for MssqlArguments
impl<'q> Arguments<'q> for MssqlArguments
type Database = Mssql
source§fn reserve(&mut self, _additional: usize, size: usize)
fn reserve(&mut self, _additional: usize, size: usize)
Reserves the capacity for at least
additional
more values (of size
total bytes) to
be added to the arguments without a reallocation.source§fn add<T>(&mut self, value: T)where
T: 'q + Encode<'q, Self::Database> + Type<Mssql>,
fn add<T>(&mut self, value: T)where T: 'q + Encode<'q, Self::Database> + Type<Mssql>,
Add the value to the end of the arguments.
fn format_placeholder<W: Write>(&self, writer: &mut W) -> Result
source§impl Clone for MssqlArguments
impl Clone for MssqlArguments
source§fn clone(&self) -> MssqlArguments
fn clone(&self) -> MssqlArguments
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 Default for MssqlArguments
impl Default for MssqlArguments
source§fn default() -> MssqlArguments
fn default() -> MssqlArguments
Returns the “default value” for a type. Read more
source§impl<'q> From<AnyArguments<'q>> for MssqlArguments
impl<'q> From<AnyArguments<'q>> for MssqlArguments
source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.