pub trait Ip { type Error: Display; // Required method fn validate_ip(&self, kind: IpKind) -> Result<(), Self::Error>; }