Enum id3::ErrorKind [] [src]

pub enum ErrorKind {
    Io(Error),
    StringDecoding(Vec<u8>),
    NoTag,
    UnsupportedVersion(u8u8),
    Parsing,
    InvalidInput,
    UnsupportedFeature,
}

Kinds of errors that may occur while performing metadata operations.

Variants

An error kind indicating that an IO error has occurred. Contains the original io::Error.

An error kind indicating that a string decoding error has occurred. Contains the invalid bytes.

An error kind indicating that the reader does not contain an ID3 tag.

An error kind indicating that the reader contains an unsupported ID3 tag version. Contains the major and minor versions that were detected in the tag.

An error kind indicating that parsing error has occurred.

An error kind indicating that some input was invalid.

An error kind indicating that a feature is not supported.

Trait Implementations

impl Debug for ErrorKind
[src]

[src]

Formats the value using the given formatter.