azure_core

Trait AppendToUrlQuery

Source
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 Option<T>

Source§

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

Source§

impl<T> AppendToUrlQuery for &T

Source§

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

Implementors§