We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A as API User I want to register a progress update callback hook So that I can easily implement a progress bar
0..1
This is the progress update callback that I want to register:
fn progress_update(progress: f32, should_cancel: &mut bool) { // let's print the current progress as percent 0..100 println!("Current Progress: {}", (progress * 100.0).floor()); // let's cancel the progress *should_cancel = true; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A as API User
I want to register a progress update callback hook
So that I can easily implement a progress bar
Acceptance Criteria
0..1
Example
This is the progress update callback that I want to register:
The text was updated successfully, but these errors were encountered: