pub trait Request {
    // Required method
    fn into_params(self) -> Vec<(&'static str, String)>;
}

Required Methods§

source

fn into_params(self) -> Vec<(&'static str, String)>

Implementors§