pub trait CommandParser<S, U>: Execute<S, U> + HelpUsage { }
Expand description

Parser trait combination of Execute and HelpUsage.

This is the result of combining one or more parsers.

Implementors