diff options
Diffstat (limited to 'rust/src/progress.rs')
| -rw-r--r-- | rust/src/progress.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/progress.rs b/rust/src/progress.rs index e6897e68..6280a7b6 100644 --- a/rust/src/progress.rs +++ b/rust/src/progress.rs @@ -2,9 +2,9 @@ use std::ffi::c_void; pub trait ProgressCallback: Sized { type SplitProgressType: SplitProgressBuilder; - + /// Caller function will call this to report progress. - /// + /// /// Return `false` to tell the caller to stop. fn progress(&mut self, progress: usize, total: usize) -> bool; |
