Enum util::error::YabsErrorKind []

pub enum YabsErrorKind {
    Msg(String),
    Io(Error),
    TomlDe(Error),
    WalkDir(Error),
    SetLog(SetLoggerError),
    UTF8(FromUtf8Error),
    Regex(Error),
    NoAssumedToml(String),
    Command(Stringi32),
    DirExists(PathBuf),
    TargetNotFound(StringString),
}

The kind of an error.

Variants

A convenient variant for String.

Methods

impl YabsErrorKind

A string describing the error kind.

Trait Implementations

impl Debug for YabsErrorKind

Formats the value using the given formatter.

impl Display for YabsErrorKind

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<String> for YabsErrorKind

Performs the conversion.

impl From<YabsError> for YabsErrorKind

Performs the conversion.