aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
blob: 27f5bd55bf92dc47c37ce500e5ac8f5f7ef8271c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/// Type for errors returned by this crate.
#[derive(thiserror::Error, Debug)]
pub enum Error {
    /// error reading from stdin
    #[error("error reading from stdin")]
    ReadStdin(#[source] std::io::Error),

    /// error enabling terminal raw mode
    #[error("error enabling terminal raw mode")]
    SetRaw(#[source] nix::Error),

    /// error restoring terminal from raw mode
    #[error("error restoring terminal from raw mode")]
    UnsetRaw(#[source] nix::Error),

    /// error writing to stdout
    #[error("error writing to stdout")]
    WriteStdout(#[source] std::io::Error),
}

/// Convenience wrapper for a `Result` using `textmode::Error`.
pub type Result<T> = std::result::Result<T, Error>;