[][src]Trait ffsend_api::pipe::progress::ProgressReporter

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.

Loading content...

Implementors

Loading content...