Enum libimaginteraction::error::InteractionErrorKind []

pub enum InteractionErrorKind {
    Msg(String),
    Unknown,
    CLIError,
    IdMissingError,
    StoreIdParsingError,
    IdSelectingError,
    ConfigError,
    ConfigMissingError,
    ConfigTypeError,
    NoConfigError,
    ReadlineHistoryFileCreationError,
    ReadlineError,
    // some variants omitted
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl InteractionErrorKind

A string describing the error kind.

Trait Implementations

impl From<InteractionErrorKind> for InteractionError

Performs the conversion.

impl Debug for InteractionErrorKind

Formats the value using the given formatter. Read more

impl Display for InteractionErrorKind

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<String> for InteractionErrorKind

Performs the conversion.

impl From<InteractionError> for InteractionErrorKind

Performs the conversion.

Auto Trait Implementations