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