pub trait Validate { type Error; // Required method fn validate(&self) -> Result<(), Self::Error>; }
next