pub trait Progress { // Required methods fn inc(&self, delta: u64); fn finish(&self); }
Progress trait for monitoring read operations.
Increase progress by delta bytes.
delta
Signal that the read has finished (success or error).