pub trait ProgressHandler {
// Provided methods
fn init(&mut self, steps: i64) { ... }
fn inc(&mut self) { ... }
fn finish(&mut self) { ... }
}Expand description
Use this trait if you want more detailed information about the progress of operations.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".