pub trait AppendToUrlQuery {
    // Required method
    fn append_to_url_query(&self, url: &mut Url);
}
Expand description

Add a new query pair into the target URL’s query string.

Required Methods§

source

fn append_to_url_query(&self, url: &mut Url)

Implementations on Foreign Types§

source§

impl<T> AppendToUrlQuery for &Twhere T: AppendToUrlQuery,

source§

fn append_to_url_query(&self, url: &mut Url)

source§

impl<T> AppendToUrlQuery for Option<T>where T: AppendToUrlQuery,

source§

fn append_to_url_query(&self, url: &mut Url)

Implementors§