pub trait BlueBuildCommand {
// Required method
fn try_run(&mut self) -> Result<()>;
// Provided method
fn run(&mut self) { ... }
}pub trait BlueBuildCommand {
// Required method
fn try_run(&mut self) -> Result<()>;
// Provided method
fn run(&mut self) { ... }
}