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

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 (16bit numbers) or 0x21e (32bit numbers)

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. Read more

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]

This method is soft-deprecated. Read more

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

impl From<Error> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more