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

Original cause.

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

Not yet supported.

Trait Implementations

impl Debug for IldaError
[src]

[src]

Formats the value using the given formatter.

impl Error for IldaError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for IldaError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for IldaError
[src]

[src]

Performs the conversion.