pub trait IntoUrl {
// Required method
fn into_url(self, base: Option<&Url>) -> Result<Url>;
// Provided method
fn request_target(&self, _method: Method) -> Option<Cow<'static, str>> { ... }
}Expand description
attempt to construct a url, with base if present
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".