aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/progress_bar.rs
blob: 64835bb42dbfcb79ad9b04be5b5d690103bc6cd8 (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!()
    }
}