Enum lewton::VorbisError [] [src]

pub enum VorbisError {
    ReadError(Error),
    BadAudio(AudioReadError),
    BadHeader(HeaderReadError),
    OggError(OggReadError),
}

Errors that can occur during decoding

Variants

Trait Implementations

impl Debug for VorbisError
[src]

Formats the value using the given formatter.

impl Error for VorbisError
[src]

A short description of the error. Read more

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

impl Display for VorbisError
[src]

Formats the value using the given formatter.

impl From<Error> for VorbisError
[src]

Performs the conversion.

impl From<AudioReadError> for VorbisError
[src]

Performs the conversion.

impl From<HeaderReadError> for VorbisError
[src]

Performs the conversion.

impl From<OggReadError> for VorbisError
[src]

Performs the conversion.