Enum simplemad::SimplemadError [] [src]

pub enum SimplemadError {
    Read(Error),
    Mad(MadError),
    EOF,
}

An error encountered during the decoding process

Variants

An io::Error generated by the Reader

A MadError generated by libmad

The Reader has stopped producing data

Trait Implementations

impl Debug for SimplemadError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<MadError> for SimplemadError
[src]

[src]

Performs the conversion.

impl From<Error> for SimplemadError
[src]

[src]

Performs the conversion.

Auto Trait Implementations