Enum bmp_encoder::BmpErrorKind [] [src]

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

The different kinds of possible BMP errors.

Variants

WrongMagicNumbersUnsupportedBitsPerPixelUnsupportedCompressionTypeUnsupportedBmpVersionOtherBmpIoError(Error)BmpByteorderError(Error)

Trait Implementations

impl Debug for BmpErrorKind
[src]

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

Formats the value using the given formatter.