Enum metaflac::ErrorKind[][src]

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

Kinds of errors that may occur while performing metadata operations.

Variants

Io(Error)

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

Tuple Fields of Io

0: Error
StringDecoding(FromUtf8Error)

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

Tuple Fields of StringDecoding

0: FromUtf8Error
InvalidInput

An error kind indicating that some input was invalid.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.