Trait DynInstallProgress

Source
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.

Required Methods§

Source

fn status_changed( &mut self, pkgname: String, steps_done: u64, total_steps: u64, action: String, )

Source

fn error( &mut self, pkgname: String, steps_done: u64, total_steps: u64, error: String, )

Implementors§