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
I'd like to use a progress indicator showing time and thoughput, current total bytes.
Currently the counter box always shows the total:
// counter box if self.show_counter { let (c, t) = (self.current as f64, self.total as f64); prefix = prefix + &match self.units { Units::Default => format!("{} / {} ", c, t), Units::Bytes => format!("{} / {} ", kb_fmt!(c), kb_fmt!(t)), }; }
Maybe a show_total could be added which switches to another counter format string like {}
show_total
{}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'd like to use a progress indicator showing time and thoughput, current total bytes.
Currently the counter box always shows the total:
Maybe a
show_total
could be added which switches to another counter format string like{}
The text was updated successfully, but these errors were encountered: