Enum il2_iltags::io::ErrorKind[][src]

pub enum ErrorKind {
    UnableToReadData,
    UnableToWriteData,
    CorruptedData,
    IOError(Error),
    BoxedError(Box<dyn Error>),
}
Expand description

Types of erros generated by this module.

Variants

UnableToReadData

Unable to read data.

UnableToWriteData

Unable to write data.

CorruptedData

The data is corrupted.

IOError(Error)

Wrapper to standard std::io::Error.

BoxedError(Box<dyn Error>)

Wrapper to a boxed error std::error::Error.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.