pub trait InstallProgress: Send + Sync {
// Required methods
fn on_stdout(&self, line: &str);
fn on_stderr(&self, line: &str);
fn on_failed(&self, message: &str);
fn on_complete(&self);
}pub trait InstallProgress: Send + Sync {
// Required methods
fn on_stdout(&self, line: &str);
fn on_stderr(&self, line: &str);
fn on_failed(&self, message: &str);
fn on_complete(&self);
}