pub trait Run<T> {
    fn run(self, args: T) -> Result<ActionResult, ActionError>;
}
Expand description

Trait for implementation Run function.

Required Methods

run function

Implementors