aboutsummaryrefslogtreecommitdiff
path: root/vendor/indicatif/examples/download-speed.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/indicatif/examples/download-speed.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/indicatif/examples/download-speed.rs')
-rw-r--r--vendor/indicatif/examples/download-speed.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/indicatif/examples/download-speed.rs b/vendor/indicatif/examples/download-speed.rs
deleted file mode 100644
index da5a80f..0000000
--- a/vendor/indicatif/examples/download-speed.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-use std::cmp::min;
-use std::thread;
-use std::time::Duration;
-
-use indicatif::{ProgressBar, 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} ({bytes_per_sec}, {eta})")
- .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");
-}