pub trait QueryParamValue {
// Required method
fn add_to_params(
&self,
param_name: &str,
params: &mut HashMap<String, String>,
);
}Required Methods§
Implementations on Foreign Types§
Source§impl QueryParamValue for &str
impl QueryParamValue for &str
Source§impl QueryParamValue for bool
impl QueryParamValue for bool
Source§impl QueryParamValue for i32
impl QueryParamValue for i32
Source§impl QueryParamValue for i64
impl QueryParamValue for i64
Source§impl QueryParamValue for u32
impl QueryParamValue for u32
Source§impl QueryParamValue for u64
impl QueryParamValue for u64
Source§impl QueryParamValue for String
TODO: We should use a better aproach to handle these types
impl QueryParamValue for String
TODO: We should use a better aproach to handle these types