pub trait FilterFn<I, T>: Send + 'static {
// Required method
fn execute(&self, scope: &Scope<I>, value: &T) -> Result<bool>;
}Expand description
Filter function.
pub trait FilterFn<I, T>: Send + 'static {
// Required method
fn execute(&self, scope: &Scope<I>, value: &T) -> Result<bool>;
}Filter function.