pub struct OdbcArguments { /* private fields */ }
Available on crate feature
odbc
only.Trait Implementationsยง
Sourceยงimpl<'q> Arguments<'q> for OdbcArguments
impl<'q> Arguments<'q> for OdbcArguments
type Database = Odbc
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 + Send + Encode<'q, <OdbcArguments as Arguments<'q>>::Database> + Type<<OdbcArguments as Arguments<'q>>::Database>,
fn add<T>(&mut self, value: T)where
T: 'q + Send + Encode<'q, <OdbcArguments as Arguments<'q>>::Database> + Type<<OdbcArguments as Arguments<'q>>::Database>,
Add the value to the end of the arguments.
fn format_placeholder<W>(&self, writer: &mut W) -> Result<(), Error>where
W: Write,
Sourceยงimpl Debug for OdbcArguments
impl Debug for OdbcArguments
Sourceยงimpl Default for OdbcArguments
impl Default for OdbcArguments
Sourceยงfn default() -> OdbcArguments
fn default() -> OdbcArguments
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl<'q> From<AnyArguments<'q>> for OdbcArguments
impl<'q> From<AnyArguments<'q>> for OdbcArguments
Sourceยงfn from(args: AnyArguments<'q>) -> OdbcArguments
fn from(args: AnyArguments<'q>) -> OdbcArguments
Converts to this type from the input type.
Sourceยงimpl<'q> IntoArguments<'q, <OdbcArguments as Arguments<'q>>::Database> for OdbcArguments
impl<'q> IntoArguments<'q, <OdbcArguments as Arguments<'q>>::Database> for OdbcArguments
fn into_arguments(self) -> OdbcArguments
Auto Trait Implementationsยง
impl Freeze for OdbcArguments
impl RefUnwindSafe for OdbcArguments
impl Send for OdbcArguments
impl Sync for OdbcArguments
impl Unpin for OdbcArguments
impl UnwindSafe for OdbcArguments
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
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self> โ
fn into_either(self, into_left: bool) -> Either<Self, Self> โ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more