pub trait Progress {
type Instance: ProgressBar;
// Required method
fn start(&self, work: usize) -> Self::Instance;
}pub trait Progress {
type Instance: ProgressBar;
// Required method
fn start(&self, work: usize) -> Self::Instance;
}