pub trait Validator: Send + Sync { // Provided method fn validate(&self) -> Result { ... } }
The trait implemented by types that require validation logic.