pub trait LocalProgressReport: Send {
// Required method
fn print(&mut self) -> Result<String>;
}Expand description
Trait implemented by per-tool progress printers.
Each tool has its own printer that only renders sections relevant to what
the tool actually does (e.g. rrm has no COPIED section; rcmp only shows
OPS). Prefer adding a new specialized printer over extending a shared one.