pub trait UnitStatus {
// Required methods
fn name(&self) -> &str;
fn description(&self) -> &str;
fn active_state(&self) -> &str;
}pub trait UnitStatus {
// Required methods
fn name(&self) -> &str;
fn description(&self) -> &str;
fn active_state(&self) -> &str;
}