pub struct AnyArguments<'q> { /* private fields */ }Available on (crate features
postgres or mysql or mssql or sqlite or odbc) and crate feature any only.Trait Implementations§
Source§impl<'q> Arguments<'q> for AnyArguments<'q>
impl<'q> Arguments<'q> for AnyArguments<'q>
type Database = Any
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.fn format_placeholder<W: Write>(&self, writer: &mut W) -> Result
Source§impl<'q> Default for AnyArguments<'q>
impl<'q> Default for AnyArguments<'q>
Source§fn default() -> AnyArguments<'q>
fn default() -> AnyArguments<'q>
Returns the “default value” for a type. Read more
Source§impl<'q> From<AnyArguments<'q>> for MssqlArguments
Available on crate feature mssql only.
impl<'q> From<AnyArguments<'q>> for MssqlArguments
Available on crate feature
mssql only.Source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.
Source§impl<'q> From<AnyArguments<'q>> for MySqlArguments
Available on crate feature mysql only.
impl<'q> From<AnyArguments<'q>> for MySqlArguments
Available on crate feature
mysql only.Source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.
Source§impl<'q> From<AnyArguments<'q>> for OdbcArguments
Available on crate feature odbc only.
impl<'q> From<AnyArguments<'q>> for OdbcArguments
Available on crate feature
odbc only.Source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.
Source§impl<'q> From<AnyArguments<'q>> for PgArguments
Available on crate feature postgres only.
impl<'q> From<AnyArguments<'q>> for PgArguments
Available on crate feature
postgres only.Source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.
Source§impl<'q> From<AnyArguments<'q>> for SqliteArguments<'q>
Available on crate feature sqlite only.
impl<'q> From<AnyArguments<'q>> for SqliteArguments<'q>
Available on crate feature
sqlite only.Source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.
Source§impl<'q> IntoArguments<'q, <AnyArguments<'q> as Arguments<'q>>::Database> for AnyArguments<'q>
impl<'q> IntoArguments<'q, <AnyArguments<'q> as Arguments<'q>>::Database> for AnyArguments<'q>
fn into_arguments(self) -> AnyArguments<'q>
Auto Trait Implementations§
impl<'q> Freeze for AnyArguments<'q>
impl<'q> !RefUnwindSafe for AnyArguments<'q>
impl<'q> Send for AnyArguments<'q>
impl<'q> !Sync for AnyArguments<'q>
impl<'q> Unpin for AnyArguments<'q>
impl<'q> !UnwindSafe for AnyArguments<'q>
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