Struct sqlx_oldapi::mssql::MssqlArguments
source ยท pub struct MssqlArguments { /* private fields */ }
Available on crate feature
mssql
only.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, <MssqlArguments as Arguments<'q>>::Database> + Type<Mssql>,
fn add<T>(&mut self, value: T)where T: 'q + Encode<'q, <MssqlArguments as Arguments<'q>>::Database> + Type<Mssql>,
Add the value to the end of the arguments.
fn format_placeholder<W>(&self, writer: &mut W) -> Result<(), Error>where W: Write,
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>) -> MssqlArguments
fn from(args: AnyArguments<'q>) -> MssqlArguments
Converts to this type from the input type.
sourceยงimpl<'q> IntoArguments<'q, <MssqlArguments as Arguments<'q>>::Database> for MssqlArguments
impl<'q> IntoArguments<'q, <MssqlArguments as Arguments<'q>>::Database> for MssqlArguments
fn into_arguments(self) -> MssqlArguments
Auto Trait Implementationsยง
impl RefUnwindSafe for MssqlArguments
impl Send for MssqlArguments
impl Sync for MssqlArguments
impl Unpin for MssqlArguments
impl UnwindSafe for MssqlArguments
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