forked from console-rs/indicatif
-
Notifications
You must be signed in to change notification settings - Fork 2
/
multi.rs
49 lines (43 loc) · 1.38 KB
/
multi.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use std::thread;
use std::time::Duration;
use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
fn main() {
let m = MultiProgress::new();
let sty = ProgressStyle::default_bar()
.template("[{elapsed_precise}] {bar:40.cyan/blue} {pos:>7}/{len:7} {msg}")
.progress_chars("##-");
let pb = m.add(ProgressBar::new(128));
pb.set_style(sty.clone());
let _ = thread::spawn(move || {
for i in 0..128 {
pb.set_message(format!("item #{}", i + 1));
pb.inc(1);
thread::sleep(Duration::from_millis(15));
}
pb.finish_with_message("done");
});
let pb = m.add(ProgressBar::new(128));
pb.set_style(sty.clone());
let _ = thread::spawn(move || {
for _ in 0..3 {
pb.set_position(0);
for i in 0..128 {
pb.set_message(format!("item #{}", i + 1));
pb.inc(1);
thread::sleep(Duration::from_millis(8));
}
}
pb.finish_with_message("done");
});
let pb = m.add(ProgressBar::new(1024));
pb.set_style(sty.clone());
let _ = thread::spawn(move || {
for i in 0..1024 {
pb.set_message(format!("item #{}", i + 1));
pb.inc(1);
thread::sleep(Duration::from_millis(2));
}
pb.finish_with_message("done");
});
m.join_and_clear().unwrap();
}