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