pub trait CommandInfo { // Required method fn caller(&self) -> &'static str; }
Each type implementing Command trait must also implement CommandInfo which is used only to retrieve information about the Command.
Command
CommandInfo