blob: 98133df9ef80f61db005184774392d79ed0fb5ad (
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
|
use crate::symfony::component::console::formatter::output_formatter::OutputFormatter;
use crate::symfony::component::console::output::output_interface::OutputInterface;
use crate::symfony::component::console::output::console_output_interface::ConsoleOutputInterface;
#[derive(Debug)]
pub struct ConsoleOutput;
impl ConsoleOutput {
pub fn new(verbosity: i64, decorated: Option<bool>, formatter: Option<OutputFormatter>) -> Self {
todo!()
}
pub fn get_error_output(&self) -> &dyn OutputInterface {
todo!()
}
}
impl OutputInterface for ConsoleOutput {
fn write(&mut self, _messages: &str, _newline: bool, _type: i64) { todo!() }
fn writeln(&mut self, _messages: &str, _type: i64) { todo!() }
fn set_verbosity(&mut self, _level: i64) { todo!() }
fn get_verbosity(&self) -> i64 { todo!() }
fn is_quiet(&self) -> bool { todo!() }
fn is_verbose(&self) -> bool { todo!() }
fn is_very_verbose(&self) -> bool { todo!() }
fn is_debug(&self) -> bool { todo!() }
fn set_decorated(&mut self, _decorated: bool) { todo!() }
fn is_decorated(&self) -> bool { todo!() }
fn set_formatter(&mut self, _formatter: OutputFormatter) { todo!() }
fn get_formatter(&self) -> &OutputFormatter { todo!() }
}
|