Enum rgmk::StringReadError []

pub enum StringReadError {
    Io(Error),
    ByteOrder(Error),
    MissingNullTerminator,
}

Error when reading a string from the string table.

Variants

An I/O error.

A byte order error.

Missing null terminator.

Trait Implementations

impl Debug for StringReadError
[src]

Formats the value using the given formatter.

impl Display for StringReadError

Formats the value using the given formatter. Read more

impl Error for StringReadError

A short description of the error. Read more

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

impl From<Error> for StringReadError

Performs the conversion.

impl From<Error> for StringReadError

Performs the conversion.