pub trait RegexCacheInst { // Required method fn validate( &self, regex: &str, values: Vec<&Value>, ) -> Result<bool, RegexCacheError>; }
A trait that defines the behavior for regex cache