[][src]Enum quicksilver::QuicksilverError

pub enum QuicksilverError {
    ImageError(ImageError),
    IOError(IOError),
    GraphicsError(GolemError),
    SurfaceImageError,
    NoSurfaceImageBound,
    FontError(FontError),
}

An error generated by Quicksilver or one of its dependencies

Variants

ImageError(ImageError)

Some image-parsing operation failed

IOError(IOError)

A file wasn't loaded correctly

GraphicsError(GolemError)

An error from within the graphics backend

This is almost always a system or internal error, and probably means you should open a bug report

SurfaceImageError

An image was passed to a Surface with a non-exclusive reference

NoSurfaceImageBound

A surface operation was attempted with no image bound to the surface

FontError(FontError)

Trait Implementations

impl Debug for QuicksilverError[src]

impl Display for QuicksilverError[src]

impl Error for QuicksilverError[src]

impl From<Error> for QuicksilverError[src]

impl From<GolemError> for QuicksilverError[src]

impl From<ImageError> for QuicksilverError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.