Trait azure_core::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§