pub trait ProgressSink: Send + Sync {
// Required method
fn on_file(&self, path: &Path, bytes: u64);
}Expand description
Receives progress events from the write pipeline.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".