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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
let style = ProgressStyle::with_template( "[{elapsed_precise:.6}] |{bar:40.cyan/blue}| {eta_precise:.1} {percent_precise}% {msg}" // {percent_precise:3.0} ) .unwrap() .progress_chars("#>-");
code changed to "percent_precise:3" or "percent_precise:.3", no percent data displayed in progress bar
The text was updated successfully, but these errors were encountered:
So you mean that the percent_precise precision cannot be modified?
percent_precise
Sorry, something went wrong.
yes
That just hasn't been implemented. I'm open to reviewing a PR for this but probably won't get to it myself.
Thanks a lot
No branches or pull requests
let style = ProgressStyle::with_template(
"[{elapsed_precise:.6}] |{bar:40.cyan/blue}| {eta_precise:.1} {percent_precise}% {msg}" // {percent_precise:3.0}
)
.unwrap()
.progress_chars("#>-");
code changed to "percent_precise:3" or "percent_precise:.3", no percent data displayed in progress bar
The text was updated successfully, but these errors were encountered: