Trait rustbar::rustbars::ProgressBar [] [src]

pub trait ProgressBar<T> {
    fn new() -> T;
    fn to_stderr(self) -> T;
    fn write(&self, buf: String) -> Result<()>;
}

all progressbars will implement it

Required Methods

Implementors