Enum alac::ReadError [] [src]

pub enum ReadError {
    Io(Error),
    UnsupportedFormat,
    Format(FormatInvalidData),
    Decoder(InvalidData),
}

An error when reading an ALAC file using a Reader.

A ReadError::Decoder will occur if the current packet is invalid. If more samples are read the reader will skip to the next packet.

Variants

Trait Implementations

impl From<CafError> for ReadError
[src]

[src]

Performs the conversion.

impl From<Error> for ReadError
[src]

[src]

Performs the conversion.

impl Debug for ReadError
[src]

[src]

Formats the value using the given formatter.

impl Error for ReadError
[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 ReadError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for ReadError
[src]

[src]

Performs the conversion.