aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/console/helper/progress_bar.rs
blob: 77bc4fd0b617dc11f384e7de6bfecd618c36e74d (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
35
36
37
38
use crate::symfony::component::console::output::OutputInterface;

#[derive(Debug)]
pub struct ProgressBar;

impl ProgressBar {
    pub fn new(_output: std::rc::Rc<std::cell::RefCell<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!()
    }

    pub fn set_progress(&mut self, _step: i64) {
        todo!()
    }
}