pub trait Url { type Error: Display; // Required method fn try_parse_url(&self) -> Result<(), Self::Error>; }