Enum lewton::VorbisError [] [src]

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

Errors that can occur during decoding

Variants

Trait Implementations

impl Debug for VorbisError
[src]

[src]

Formats the value using the given formatter.

impl Error for VorbisError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for VorbisError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<AudioReadError> for VorbisError
[src]

[src]

Performs the conversion.

impl From<HeaderReadError> for VorbisError
[src]

[src]

Performs the conversion.

impl From<OggReadError> for VorbisError
[src]

[src]

Performs the conversion.