pub trait IntoUrl {
    fn into_url(self) -> CargoResult<Url>;
}
Expand description

A type that can be converted to a Url

Required Methods

Performs the conversion

Implementations on Foreign Types

Implementors