Params

Trait Params 

Source
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.

Required Methods§

Source

fn params(&'a mut self, client: &'a C, params: &'a P) -> O

Implementors§