pub trait DynInstallProgress {
// Required methods
fn status_changed(
&mut self,
pkgname: String,
steps_done: u64,
total_steps: u64,
action: String,
);
fn error(
&mut self,
pkgname: String,
steps_done: u64,
total_steps: u64,
error: String,
);
}
Expand description
Customize the output of installation progress.