diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/indicatif/examples/download.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/indicatif/examples/download.rs')
-rw-r--r-- | vendor/indicatif/examples/download.rs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/indicatif/examples/download.rs b/vendor/indicatif/examples/download.rs deleted file mode 100644 index c3f9202..0000000 --- a/vendor/indicatif/examples/download.rs +++ /dev/null @@ -1,25 +0,0 @@ -use std::thread; -use std::time::Duration; -use std::{cmp::min, fmt::Write}; - -use indicatif::{ProgressBar, ProgressState, ProgressStyle}; - -fn main() { - let mut downloaded = 0; - let total_size = 231231231; - - let pb = ProgressBar::new(total_size); - pb.set_style(ProgressStyle::with_template("{spinner:.green} [{elapsed_precise}] [{wide_bar:.cyan/blue}] {bytes}/{total_bytes} ({eta})") - .unwrap() - .with_key("eta", |state: &ProgressState, w: &mut dyn Write| write!(w, "{:.1}s", state.eta().as_secs_f64()).unwrap()) - .progress_chars("#>-")); - - while downloaded < total_size { - let new = min(downloaded + 223211, total_size); - downloaded = new; - pb.set_position(new); - thread::sleep(Duration::from_millis(12)); - } - - pb.finish_with_message("downloaded"); -} |