pub trait HasCommand {
// Required methods
fn command(&self) -> &Command;
fn command_mut(&mut self) -> &mut Command;
}
pub trait HasCommand {
// Required methods
fn command(&self) -> &Command;
fn command_mut(&mut self) -> &mut Command;
}