Enum conductor::ErrorKind []

pub enum ErrorKind {
    Msg(String),
    Compose(ErrorKind),
    Utf8Error(FromUtf8Error),
    Glob(GlobError),
    GlobPattern(PatternError),
    Io(Error),
    StripPrefix(StripPrefixError),
    Vault(Error),
    CommandFailed(Vec<OsString>),
    PluginFailed(String),
}

Variants

An error occurred running an external command.

Methods

impl ErrorKind

Trait Implementations

impl Debug for ErrorKind

Formats the value using the given formatter.

impl Display for ErrorKind

Formats the value using the given formatter.

impl From<ErrorKind> for ErrorKind

Performs the conversion.

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

Performs the conversion.

impl From<String> for ErrorKind

Performs the conversion.