pub trait ProgressManager: Default + Clone {
    // Required methods
    fn println(&self, msg: &str);
    fn progress_bar(&self) -> Option<ProgressBar>;
}

Required Methods§

source

fn println(&self, msg: &str)

source

fn progress_bar(&self) -> Option<ProgressBar>

Progress bar for the resources, do not use for anything else

Implementors§