pub trait IntoUrl {
    // Required method
    fn into_url(self, base: Option<&Url>) -> Result<Url>;
}
Expand description

attempt to construct a url, with base if present

Required Methods§

source

fn into_url(self, base: Option<&Url>) -> Result<Url>

attempt to construct a url, with base if present

Implementations on Foreign Types§

source§

impl IntoUrl for &str

source§

fn into_url(self, base: Option<&Url>) -> Result<Url>

Implementors§