Enum term::terminfo::Error [] [src]

pub enum Error {
    TermUnset,
    MalformedTerminfo(String),
    IoError(Error),
}
🔬 This is a nightly-only experimental API. (rustc_private)

use the crates.io term library instead

A terminfo creation error.

Variants

🔬 This is a nightly-only experimental API. (rustc_private)

use the crates.io term library instead

TermUnset Indicates that the environment doesn't include enough information to find the terminfo entry.

🔬 This is a nightly-only experimental API. (rustc_private)

use the crates.io term library instead

MalformedTerminfo indicates that parsing the terminfo entry failed.

🔬 This is a nightly-only experimental API. (rustc_private)

use the crates.io term library instead

io::Error forwards any io::Errors encountered when finding or reading the terminfo entry.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for Error
[src]

Formats the value using the given formatter. Read more