Enum ogg_metadata::OggMetadataError [] [src]

pub enum OggMetadataError {
    UnrecognizedFormat,
    ReadError(Error),
}

Variants

Bad format or not one recognized by this crate.

I/O error occured.

Trait Implementations

impl Debug for OggMetadataError
[src]

Formats the value using the given formatter.

impl Error for OggMetadataError
[src]

A short description of the error. Read more

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

impl Display for OggMetadataError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for OggMetadataError
[src]

Performs the conversion.

impl From<OggReadError> for OggMetadataError
[src]

Performs the conversion.