Trait sqlx::Arguments

source ·
pub trait Arguments<'q>: Send + Sized + Default {
    type Database: Database;

    // Required methods
    fn reserve(&mut self, additional: usize, size: usize);
    fn add<T>(&mut self, value: T)
       where T: 'q + Send + Encode<'q, Self::Database> + Type<Self::Database>;

    // Provided method
    fn format_placeholder<W>(&self, writer: &mut W) -> Result<(), Error>
       where W: Write { ... }
}
Expand description

A tuple of arguments to be sent to the database.

Required Associated Types§

Required Methods§

source

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>,

Add the value to the end of the arguments.

Provided Methods§

source

fn format_placeholder<W>(&self, writer: &mut W) -> Result<(), Error>where W: Write,

Implementors§