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§
fn append_to_url_query(&self, url: &mut Url)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".