Enum libimagentrylist::error::ListErrorKind []

pub enum ListErrorKind {
    Msg(String),
    IOError,
    FormatError,
    EntryError,
    IterationError,
    CLIError,
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl ListErrorKind

A string describing the error kind.

Trait Implementations

impl Debug for ListErrorKind

Formats the value using the given formatter.

impl Display for ListErrorKind

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<String> for ListErrorKind

Performs the conversion.

impl From<ListError> for ListErrorKind

Performs the conversion.