Enum quicksilver::graphics::ImageError[][src]

pub enum ImageError {
    FormatError(String),
    DimensionError,
    UnsupportedError(String),
    UnsupportedColor,
    NotEnoughData,
    IOError(IOError),
    ImageEnd,
}

An error generated while loading an image

Variants

There was an error in the image format

The image dimensions were invalid

The image format is unsupported

The color type is not supported

The image data ends too early

There was some error reading the image file

The image has reached its end

Trait Implementations

impl Debug for ImageError
[src]

Formats the value using the given formatter. Read more

impl Display for ImageError
[src]

Formats the value using the given formatter. Read more

impl Error for ImageError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for ImageError

impl Sync for ImageError