From e95b01104a30df81b0ac105ad90c6a278b77a112 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Fri, 7 Oct 2022 16:43:56 +0300 Subject: [PATCH] =?UTF-8?q?refactor(console):=20=F0=9F=93=A6=20Improve=20c?= =?UTF-8?q?onsole=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- machine/src/devices/console.rs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/machine/src/devices/console.rs b/machine/src/devices/console.rs index a73900c..4c3e09e 100644 --- a/machine/src/devices/console.rs +++ b/machine/src/devices/console.rs @@ -76,14 +76,12 @@ pub struct Console { impl Default for Console { fn default() -> Self { - Console { - output: (NullConsole {}).into(), - } + Self::new() } } impl Console { - pub const fn new() -> Console { + pub const fn new() -> Self { Console { output: Output::None(NullConsole {}), } @@ -99,10 +97,10 @@ impl Console { /// Overwrite the current output. The old output will go out of scope and /// its Drop function will be called. - pub fn replace_with(&mut self, x: Output) { + pub fn replace_with(&mut self, new_output: Output) { self.current_ptr().flush(); - self.output = x; + self.output = new_output; } /// A command prompt.