pub trait ProgressPrinter {
// Required method
fn track_task_progress(&self, task: &Task);
}Expand description
A way to display progress.
Required Methods§
Sourcefn track_task_progress(&self, task: &Task)
fn track_task_progress(&self, task: &Task)
Track and display the progress for this specific task.