pub trait IntoUrl {
// Required method
fn into_url(self) -> Result<Url, ParseError>;
}Expand description
Conversion into a parsed URL for request builders.
Required Methods§
Sourcefn into_url(self) -> Result<Url, ParseError>
fn into_url(self) -> Result<Url, ParseError>
Converts this value into a URL.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".