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