Enum flic::FlicError []

pub enum FlicError {
    NoGood,
    BadInput,
    NoFile,
    NotARegularFile,
    BadMagic,
    Corrupted,
    WrongResolution,
    ExceededLimit,
    Io(Error),
}

Variants

Trait Implementations

impl Debug for FlicError
[src]

Formats the value using the given formatter.

impl Display for FlicError

Formats the value using the given formatter. Read more

impl Error for FlicError

A short description of the error. Read more

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

impl From<Error> for FlicError

Performs the conversion.