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