pub trait Validatable { // Required method fn validate(&self) -> Result<()>; }
Validation trait for objects that can be validated
Validate the object