pub trait IRunner { // Required methods fn short_description(&self) -> String; fn execute(&mut self, prefix: &str, args: &[&str]); }