pub trait Filter: Sync + Send {
    fn filter(
        &self,
        value: &Value,
        args: &HashMap<String, Value>
    ) -> Result<Value>; fn is_safe(&self) -> bool { ... } }
Expand description

The filter function type definition

Required Methods

The filter function type definition

Provided Methods

Whether the current filter’s output should be treated as safe, defaults to false

Implementors