pub trait ProgressBar {
    // Required methods
    fn tick(&self);
    fn set_message(&self, msg: Cow<'static, str>);
}

Required Methods§

source

fn tick(&self)

source

fn set_message(&self, msg: Cow<'static, str>)

Implementations on Foreign Types§

source§

impl ProgressBar for ()

source§

fn tick(&self)

source§

fn set_message(&self, _msg: Cow<'static, str>)

Implementors§