Enum minimp3::Error[][src]

pub enum Error {
    Io(Error),
    InsufficientData,
    SkippedData,
    Eof,
}

Errors encountered by the MP3 decoder.

Variants

An error caused by some IO operation required during decoding.

The decoder tried to parse a frame from its internal buffer, but there was not enough.

The decoder encountered data which was not a frame (ie, ID3 data), and skipped it.

The decoder has reached the end of the provided reader.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error