summaryrefslogtreecommitdiff
path: root/rust/src/progress.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-07-28 20:33:46 -0400
committerMason Reed <mason@vector35.com>2025-07-28 20:33:56 -0400
commit464dda74bdfd75b498df367cbc19aebd907e36dc (patch)
treee457c81602769b8089fe178b09dc95a22548afb6 /rust/src/progress.rs
parent490ffa62a86085c02c5a3bd857791a27e60d58b6 (diff)
[Rust] Misc formatting
Diffstat (limited to 'rust/src/progress.rs')
-rw-r--r--rust/src/progress.rs4
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;