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]

Formats the value using the given formatter. Read more

impl Error for VorbisError
[src]

This method is soft-deprecated. 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. Read more

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.

Auto Trait Implementations

impl Send for VorbisError

impl Sync for VorbisError