pub fn create_hyper_uri_with_params<'p, PT, TS>(
    url_str: &str,
    params: &'p PT
) -> Uriwhere
    PT: IntoIterator<Item = (&'p str, Option<&'p TS>)> + Clone,
    TS: ToString + 'p,