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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".