Struct sqlx_core::any::AnyArguments
source · pub struct AnyArguments<'q> { /* private fields */ }
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.source§fn add<T>(&mut self, value: T)where
T: 'q + Send + Encode<'q, Self::Database> + Type<Self::Database>,
fn add<T>(&mut self, value: T)where T: 'q + Send + Encode<'q, Self::Database> + Type<Self::Database>,
Add the value to the end of the arguments.
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
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.
source§impl<'q> From<AnyArguments<'q>> for MySqlArguments
impl<'q> From<AnyArguments<'q>> for MySqlArguments
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
impl<'q> From<AnyArguments<'q>> for PgArguments
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>
impl<'q> From<AnyArguments<'q>> for SqliteArguments<'q>
source§fn from(args: AnyArguments<'q>) -> Self
fn from(args: AnyArguments<'q>) -> Self
Converts to this type from the input type.