summary refs log tree commit diff
path: root/src/terminal/error.rs
blob: 6666e49a37852eb4924307c1e48805022ea6cb94 (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
#[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))
}