Trait ToUrl

Source
pub trait ToUrl {
    // Required method
    fn to_url(&self) -> Result<Url>;
}
Expand description

Represents the ability to be made into a URL.

Required Methods§

Source

fn to_url(&self) -> Result<Url>

Implementations on Foreign Types§

Source§

impl ToUrl for &str

Source§

fn to_url(&self) -> Result<Url>

Source§

impl ToUrl for String

Source§

fn to_url(&self) -> Result<Url>

Implementors§