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