pub trait IAction: INode { // Required method fn invoke(&mut self, args: &str, writer: &mut dyn IWrite); }
Action node interface.
Provides an object safe interface for actions, type erasing its implementation.
Invokes the closure associated with the Action.
Given argument string and a console interface to writer output to.