Enum cargo_deb::CargoDebError []

pub enum CargoDebError {
    Io(Error),
    IoFile(&'static strErrorPathBuf),
    CommandFailed(Error, &'static str),
    CommandError(&'static strStringVec<u8>),
    Str(&'static str),
    NumParse(&'static strParseIntError),
    InstallFailed,
    BuildFailed,
    StripFailed(PathBufString),
    SystemTime(SystemTimeError),
    ParseTOML(Error),
    ParseJSON(Error),
    PackageNotFound(StringVec<u8>),
    VariantNotFound(String),
    GlobPatternError(PatternError),
    AssetGlobError(GlobError),
}

Variants

Trait Implementations

impl Debug for CargoDebError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for CargoDebError

Formats the value using the given formatter. Read more

impl Error for CargoDebError

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for CargoDebError

Performs the conversion.

impl From<&'static str> for CargoDebError

Performs the conversion.

impl From<SystemTimeError> for CargoDebError

Performs the conversion.

impl From<Error> for CargoDebError

Performs the conversion.

impl From<Error> for CargoDebError

Performs the conversion.

impl From<PatternError> for CargoDebError

Performs the conversion.

impl From<GlobError> for CargoDebError

Performs the conversion.

Auto Trait Implementations

impl Send for CargoDebError

impl Sync for CargoDebError