pub trait PostalCodeValidator {
// Required method
fn validate(&self, code: &str) -> bool;
}Expand description
Trait that all country-specific postal code validators must implement.
pub trait PostalCodeValidator {
// Required method
fn validate(&self, code: &str) -> bool;
}Trait that all country-specific postal code validators must implement.