Trait ffsend_api::reader::ProgressReporter[][src]

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

A progress reporter.

Required Methods

Start the progress with the given total.

A progress update.

Finish the progress.

Implementors