From a1c7e6908a26e10f6e1f23a51721664b5e2d838d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 02:53:53 +0900 Subject: chore(style): cargo fmt --- .../component/console/output/console_output.rs | 56 ++++++++++++++++------ 1 file changed, 42 insertions(+), 14 deletions(-) (limited to 'crates/shirabe-external-packages/src/symfony/component/console/output') diff --git a/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs b/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs index 98133df..150c8ae 100644 --- a/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs +++ b/crates/shirabe-external-packages/src/symfony/component/console/output/console_output.rs @@ -1,12 +1,16 @@ 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; +use crate::symfony::component::console::output::output_interface::OutputInterface; #[derive(Debug)] pub struct ConsoleOutput; impl ConsoleOutput { - pub fn new(verbosity: i64, decorated: Option, formatter: Option) -> Self { + pub fn new( + verbosity: i64, + decorated: Option, + formatter: Option, + ) -> Self { todo!() } @@ -16,16 +20,40 @@ impl ConsoleOutput { } 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!() } + 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!() + } } -- cgit v1.3.1