Enum bmp::BmpErrorKind [-] [+] [src]

pub enum BmpErrorKind {
    WrongMagicNumbers,
    UnsupportedBitsPerPixel,
    UnsupportedCompressionType,
    UnsupportedBmpVersion,
    Other,
    BmpIoError(Error),
    BmpByteorderError(Error),
}

The different kinds of possible BMP errors.

Variants

WrongMagicNumbers
UnsupportedBitsPerPixel
UnsupportedCompressionType
UnsupportedBmpVersion
Other
BmpIoError
BmpByteorderError

Trait Implementations

Derived Implementations

impl Debug for BmpErrorKind

fn fmt(&self, __arg_0: &mut Formatter) -> Result