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