pub trait RequestWithParams {
    fn set_params(&mut self, _: Params);
fn get_params<'a>(&'a self) -> &'a Params; }

Required methods

Implementors