Enum ogg::reading::OggReadError[][src]

pub enum OggReadError {
    NoCapturePatternFound,
    InvalidStreamStructVer(u8),
    HashMismatch(u32u32),
    ReadError(Error),
    InvalidData,
}

Error that can be raised when decoding an Ogg transport.

Variants

The capture pattern for a new page was not found where one was expected.

Invalid stream structure version, with the given one attached.

Mismatch of the hash value with (expected, calculated) value.

I/O error occured.

Some constraint required by the spec was not met.

Trait Implementations

impl Debug for OggReadError
[src]

Formats the value using the given formatter. Read more

impl Error for OggReadError
[src]

This method is soft-deprecated. Read more

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

impl Display for OggReadError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for OggReadError
[src]

Performs the conversion.

Auto Trait Implementations