pub trait BuildExecute<C, O> {
    fn build_exec(self, task: C) -> O;
}
Expand description

Command logic builder type (without propagation).

This trait should be implemented by argument type parsers and branching parsers.

Appends the logic that should be executed when the command parser reaches the current parser block. This allows parsers to be fed with command input as well as allow arguments to become optional.

Required Methods

Implementors