pub trait ModelValidation { // Provided method fn validate(&self) -> Result<(), Vec<ValidationError>> { ... } }