Skip to main content

ProgressPrinter

Trait ProgressPrinter 

Source
pub trait ProgressPrinter {
    // Required method
    fn track_task_progress(&self, task: &Task);
}
Expand description

A way to display progress.

Required Methods§

Source

fn track_task_progress(&self, task: &Task)

Track and display the progress for this specific task.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§