Enum audrey::read::FormatError [] [src]

pub enum FormatError {
    Flac(Error),
    OggVorbis(VorbisError),
    Wav(Error),
    Caf(CafError),
    Alac(()),
}

Format-specific errors that might occur when opening or reading from an audio file.

Variants

Trait Implementations

impl Debug for FormatError
[src]

Formats the value using the given formatter.

impl From<Error> for FormatError
[src]

Performs the conversion.

impl From<VorbisError> for FormatError
[src]

Performs the conversion.

impl From<Error> for FormatError
[src]

Performs the conversion.

impl From<CafError> for FormatError
[src]

Performs the conversion.

impl Error for FormatError
[src]

A short description of the error. Read more

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

impl Display for FormatError
[src]

Formats the value using the given formatter. Read more