From 380db764e0c5466f1564045c7da40fdde967612c Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Sat, 16 Jan 2021 03:05:28 -0800 Subject: put the terminal in raw mode; also add a TerminalError type --- src/terminal/error.rs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/terminal/error.rs (limited to 'src/terminal') diff --git a/src/terminal/error.rs b/src/terminal/error.rs new file mode 100644 index 0000000..6666e49 --- /dev/null +++ b/src/terminal/error.rs @@ -0,0 +1,31 @@ +#[derive(Clone,Debug,Eq,Hash,Ord,PartialEq,PartialOrd)] +pub enum TerminalError { + Input(String), + ModeSetting(String), +} + +impl std::error::Error for TerminalError { } + +impl std::fmt::Display for TerminalError { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + TerminalError::Input(s) => + f.write_fmt(format_args!( + "Can't read terminal input: {}", s)), + TerminalError::ModeSetting(s) => + f.write_fmt(format_args!( + "Can't set terminal mode: {}", s)), + } + } +} + + +pub fn input(e: impl std::error::Error) -> TerminalError { + TerminalError::ModeSetting(format!("{}", e)) +} + + +pub fn mode_setting(e: impl std::error::Error) -> TerminalError { + TerminalError::ModeSetting(format!("{}", e)) +} + -- cgit 1.4.1