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