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

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

A progress reporter.

Required methods

pub fn start(&mut self, total: u64)[src]

Start the progress with the given total.

pub fn progress(&mut self, progress: u64)[src]

A progress update.

pub fn finish(&mut self)[src]

Finish the progress.

Loading content...

Implementors

Loading content...