Enum quicksilver::QuicksilverError[][src]

pub enum QuicksilverError {
    AtlasError(AtlasError),
    ImageError(ImageError),
    SoundError(SoundError),
    IOError(IOError),
    SerdeError(SerdeError),
    FontError(FontError),
}

An error generated by some Quicksilver subsystem

Variants

An error from an image atlas

An error from loading an image

An error from loading a sound

An error from loading a file

A serialize or deserialize error

There was an error loading a font file

Trait Implementations

impl Debug for QuicksilverError
[src]

Formats the value using the given formatter. Read more

impl Display for QuicksilverError
[src]

Formats the value using the given formatter. Read more

impl Error for QuicksilverError
[src]

This method is soft-deprecated. Read more

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

impl From<IOError> for QuicksilverError
[src]

Performs the conversion.

impl From<SerdeError> for QuicksilverError
[src]

Performs the conversion.

Auto Trait Implementations