Enum libimagtodo::error::TodoErrorKind []

pub enum TodoErrorKind {
    Msg(String),
    ConversionError,
    StoreError,
    StoreIdError,
    ImportError,
    UTF8Error,
    HeaderFieldMissing,
    HeaderTypeError,
    UuidParserError,
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl TodoErrorKind

A string describing the error kind.

Trait Implementations

impl Debug for TodoErrorKind

Formats the value using the given formatter.

impl Display for TodoErrorKind

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<String> for TodoErrorKind

Performs the conversion.

impl From<TodoError> for TodoErrorKind

Performs the conversion.