pub trait IntoUrl {
// Required method
fn into_url(self) -> CargoResult<Url>;
}Expand description
A type that can be converted to a Url
Required Methods§
Sourcefn into_url(self) -> CargoResult<Url>
fn into_url(self) -> CargoResult<Url>
Performs the conversion
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".