[][src]Enum quicksilver::Error

pub enum Error {
    AtlasError(AtlasError),
    ContextError(String),
    ImageError(ImageError),
    IOError(IOError),
    GilrsError(Error),
    SoundError(SoundError),
    SaveError(SaveError),
    FontError(FontError),
}

An error generated by some Quicksilver subsystem

Variants

AtlasError(AtlasError)

An error from an image atlas

ContextError(String)

Creating or manipulating the OpenGL Context failed

ImageError(ImageError)

An error from loading an image

IOError(IOError)

An error from loading a file

GilrsError(Error)

An error when creating a gilrs context

SoundError(SoundError)

An error from loading a sound

SaveError(SaveError)

A serialize or deserialize error

FontError(FontError)

There was an error loading a font file

Trait Implementations

impl From<Error> for QuicksilverError[src]

impl From<SaveError> for QuicksilverError[src]

impl Display for QuicksilverError[src]

impl Debug for QuicksilverError[src]

impl Error for QuicksilverError[src]

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

Auto Trait Implementations

impl !Send for Error

impl !Sync for Error

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Downcast for T where
    T: Any