pub trait ProgressReporter: Send {
    fn start(&mut self, total: u64);
    fn progress(&mut self, progress: u64);
    fn finish(&mut self);
}
Expand description

A progress reporter.

Required Methods

Start the progress with the given total.

A progress update.

Finish the progress.

Implementors