blob: 22ca089cd6c801f44294af927bf5b3f8545e0594 (
plain)
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
|
use crate::symfony::component::console::output::output_interface::OutputInterface;
#[derive(Debug)]
pub struct ProgressBar;
impl ProgressBar {
pub fn new(output: &dyn OutputInterface, max: i64) -> Self {
todo!()
}
pub fn start(&mut self, max: Option<i64>) {
todo!()
}
pub fn advance(&mut self, step: i64) {
todo!()
}
pub fn finish(&mut self) {
todo!()
}
pub fn set_format(&mut self, format: &str) {
todo!()
}
pub fn get_progress(&self) -> i64 {
todo!()
}
pub fn get_max_steps(&self) -> i64 {
todo!()
}
}
|