Enum term::terminfo::Error
[−]
[src]
pub enum Error {
TermUnset,
MalformedTerminfo(String),
IoError(Error),
}Unstable (
rustc_private): use the crates.io term library instead
A terminfo creation error.
Variants
TermUnsetUnstable (
rustc_private): use the crates.io term library instead
TermUnset Indicates that the environment doesn't include enough information to find the terminfo entry.
MalformedTerminfo(String)Unstable (
rustc_private): use the crates.io term library instead
MalformedTerminfo indicates that parsing the terminfo entry failed.
IoError(Error)Unstable (
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 Error for Error[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any.