pub trait TrackableOperation {
// Required method
fn execute_with_progress(&self, tracker: &ProgressTracker) -> Result<()>;
}Expand description
Helper trait for operations that can be tracked
Required Methods§
Sourcefn execute_with_progress(&self, tracker: &ProgressTracker) -> Result<()>
fn execute_with_progress(&self, tracker: &ProgressTracker) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".