pub trait ShowProgress {
    // Required method
    fn show_progress(
        &mut self,
        title: &String,
        progress: i32,
        resume_possible: bool
    );
}

Required Methods§

source

fn show_progress( &mut self, title: &String, progress: i32, resume_possible: bool )

| Send progress indicator. |

Implementors§