pub trait StatusReporter: Send + Sync {
// Required methods
fn phase(&self, name: &str);
fn step(&self, msg: &str);
fn counter(&self, key: &str, value: u64);
fn info(&self, key: &str, value: &dyn Display);
fn warn(&self, msg: &str);
fn summary(&self, summary: &RunSummary);
fn done(&self, name: &str);
}