Enum libimagentrytag::error::TagErrorKind []

pub enum TagErrorKind {
    Msg(String),
    TagTypeError,
    HeaderReadError,
    HeaderWriteError,
    NotATag,
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl TagErrorKind

A string describing the error kind.

Trait Implementations

impl From<TagErrorKind> for TagError

Performs the conversion.

impl Debug for TagErrorKind

Formats the value using the given formatter. Read more

impl Display for TagErrorKind

Formats the value using the given formatter. Read more

impl<'a> From<&'a str> for TagErrorKind

Performs the conversion.

impl From<String> for TagErrorKind

Performs the conversion.

impl From<TagError> for TagErrorKind

Performs the conversion.

Auto Trait Implementations

impl Send for TagErrorKind

impl Sync for TagErrorKind