pub trait Params<'a, P, O, C> {
// Required method
fn params(&'a mut self, client: &'a C, params: &'a P) -> O;
}Expand description
This trait allows you to bind parameters to a query using a single struct, rather than passing each bind parameter as a function parameter.