pub trait Validate { // Required method fn validate(&self) -> Result<(), ConfigSchemaError>; }
Validate