[−][src]Trait sqlx_core::arguments::Arguments
A tuple of arguments to be sent to the database.
Associated Types
Loading content...Required methods
fn reserve(&mut self, len: usize, size: usize)
Reserves the capacity for at least len
more values (of size
bytes) to
be added to the arguments without a reallocation.
fn add<T>(&mut self, value: T) where
T: Type<Self::Database>,
T: Encode<Self::Database>,
T: Type<Self::Database>,
T: Encode<Self::Database>,
Add the value to the end of the arguments.