pub trait Filter: Send + Sync { // Required method fn filter( &self, value: &Value, args: &HashMap<String, Value>, ) -> FilterResult; }