pub trait Execute<T> { // Required method fn execute(&self, status: &Status) -> Result<T>; }
Simple method used to execute a command. All static command should implemtant it (cli_menu, tui_menu).