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-continued.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/indicatif/examples/download-continued.rs')
-rw-r--r-- | vendor/indicatif/examples/download-continued.rs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/vendor/indicatif/examples/download-continued.rs b/vendor/indicatif/examples/download-continued.rs deleted file mode 100644 index c9a76b6..0000000 --- a/vendor/indicatif/examples/download-continued.rs +++ /dev/null @@ -1,29 +0,0 @@ -use std::cmp::min; -use std::thread; -use std::time::Duration; - -use indicatif::{ProgressBar, ProgressStyle}; - -fn main() { - let mut downloaded = 69369369; - let total_size = 231231231; - - let pb = ProgressBar::new(total_size); - pb.set_style( - ProgressStyle::with_template( - "{spinner:.green} [{wide_bar:.cyan/blue}] {bytes}/{total_bytes} ({eta})", - ) - .unwrap() - .progress_chars("#>-"), - ); - pb.set_position(downloaded); - pb.reset_eta(); - - while downloaded < total_size { - downloaded = min(downloaded + 123211, total_size); - pb.set_position(downloaded); - thread::sleep(Duration::from_millis(12)); - } - - pb.finish_with_message("downloaded"); -} |