pub trait MinimalProgressLog {
    // Required methods
    fn update(&mut self);
    fn update_with_count(&mut self, count: usize);
    fn light_update(&mut self);
    fn update_and_display(&mut self);
}
Expand description

Like ProgressLog, but only allows updates (ie. no start/stop/done/configuration)

Required Methods§

source

fn update(&mut self)

source

fn update_with_count(&mut self, count: usize)

source

fn light_update(&mut self)

source

fn update_and_display(&mut self)

Implementors§