Skip to main content

InstallProgress

Trait InstallProgress 

Source
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);
}

Required Methods§

Source

fn on_stdout(&self, line: &str)

Source

fn on_stderr(&self, line: &str)

Source

fn on_failed(&self, message: &str)

Source

fn on_complete(&self)

Implementors§