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

pub enum ErrorKind {
    UnableToReadData,
    UnableToWriteData,
    CorruptedData,
    EndOfData,
    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.

EndOfData

Error that indicates the end of data. New since 1.4.0.

IOError(Error)

Wrapper to standard std::io::Error.

Tuple Fields of IOError

0: Error
BoxedError(Box<dyn Error>)

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

Tuple Fields of BoxedError

0: Box<dyn Error>

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Performs the conversion.

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.