pub fn url_parse(s: &str) -> Result<Url>Expand description
Parse a URL string into a Url type.
This helper abstracts the parsing API difference between url and ada-url:
urlcrate:Url::parse(s)returnsResult<Url, ParseError>ada-urlcrate:Url::parse(s, None)returnsResult<Url, ParseUrlError>