pub trait Validator { // Required method fn validate(&self) -> Result<(), SemanticValidationError>; }
Will return an error if the configuration is invalid.