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

pub enum Error {
    BadMagic(u16),
    NotUtf8(Utf8Error),
    ShortNames,
    TooManyBools,
    TooManyNumbers,
    TooManyStrings,
    InvalidLength,
    NamesMissingNull,
    StringsMissingNull,
}

An error from parsing a terminfo entry

Variants

The "magic" number at the start of the file was wrong.

It should be 0x11A

The names in the file were not valid UTF-8.

In theory these should only be ASCII, but to work with the Rust str type, we treat them as UTF-8. This is valid, except when a terminfo file decides to be invalid. This hasn't been encountered in the wild.

The names section of the file was empty

More boolean parameters are present in the file than this crate knows how to interpret.

More number parameters are present in the file than this crate knows how to interpret.

More string parameters are present in the file than this crate knows how to interpret.

The length of some field was not >= -1.

The names table was missing a trailing null terminator.

The strings table was missing a trailing null terminator.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Eq for Error
[src]

impl PartialEq for Error
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl From<FromUtf8Error> for Error
[src]

Performs the conversion.

impl Error for Error
[src]

A short description of the error. Read more

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