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 From<YabsErrorKind> for YabsError

Performs the conversion.

impl Debug for YabsErrorKind

Formats the value using the given formatter. Read more

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.

Auto Trait Implementations

impl Send for YabsErrorKind

impl Sync for YabsErrorKind