Enum ilda::IldaError [] [src]

pub enum IldaError {
    FileTooSmall,
    InvalidData,
    InvalidHeader,
    IoError {
        cause: Error,
    },
    NoData,
    Unsupported,
}

Ilda library errors.

Variants

The ILDA file is too small to read.

Problems were encountered while reading the ILDA data.

Problems were encountered while reading the ILDA data, specifically with an invalid ILDA header section.

Wraps standard library IO errors.

Fields of IoError

No data in the file, or nothing could be parsed.

Not yet supported.

Trait Implementations

impl Debug for IldaError
[src]

Formats the value using the given formatter.

impl Error for IldaError
[src]

A short description of the error. Read more

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

impl Display for IldaError
[src]

Formats the value using the given formatter.

impl From<Error> for IldaError
[src]

Performs the conversion.