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
#[derive(thiserror::Error, Debug)]
pub enum TlError {
#[error("IO error: {0}")]
IO(#[from] std::io::Error),
#[error("UTF8 error: {0}")]
Utf8(#[from] std::str::Utf8Error),
#[error("Parse Int error: {0}")]
ParseInt(#[from] std::num::ParseIntError),
#[error("Wrong answer format: {0}")]
WrongFormat(String),
#[error("Timeout waiting for xterm")]
Timeout,
#[error("Terminal error code: {0}")]
TerminalError(i64),
#[error("Nix error: {0}")]
#[cfg(unix)]
NixError(#[from] nix::errno::Errno),
#[error("No $COLORFGBG env variable")]
NoColorFgBgEnv,
#[error("Var error: {0}")]
VarError(#[from] std::env::VarError),
#[error("Unsupported platform")]
Unsupported,
}