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