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