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
fn start(&mut self, total: u64)
Start the progress with the given total.
fn progress(&mut self, progress: u64)
A progress update.
fn finish(&mut self)
Finish the progress.