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