Enum metaflac::ErrorKind [] [src]

pub enum ErrorKind {
    Io(Error),
    StringDecoding(FromUtf8Error),
    InvalidInput,
}

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 some input was invalid.

Trait Implementations

impl Debug for ErrorKind
[src]

[src]

Formats the value using the given formatter.