pub trait DMSCValidationRule: Send + Sync { // Required methods fn validate(&self, value: &str) -> Option<DMSCValidationError>; fn name(&self) -> &'static str; }