pub trait CommandBase { // Required methods fn exec(&self); fn name(&self) -> String; fn key(&self) -> Option<HotKey>; }