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