pub trait Reporter {
    fn report(&mut self, pi: &ProgressInfo<'_>);
    fn clear(&mut self);
}

Required Methods

Implementors