Enum quicksilver::sound::SoundError [] [src]

pub enum SoundError {
    UnrecognizedFormat,
    IOError,
}

An error generated when loading a sound

Variants

The sound file is not in an format that can be played

The Sound was not found or could not be loaded

Trait Implementations

impl Clone for SoundError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SoundError
[src]

[src]

Formats the value using the given formatter.

impl From<DecoderError> for SoundError
[src]

[src]

Performs the conversion.

impl From<IOError> for SoundError
[src]

[src]

Performs the conversion.