Enum bmp::BmpErrorKind [] [src]

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

The different kinds of possible BMP errors.

Variants

Trait Implementations

impl Debug for BmpErrorKind
[src]

[src]

Formats the value using the given formatter. Read more

impl AsRef<str> for BmpErrorKind
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for BmpErrorKind

impl Sync for BmpErrorKind