Enum release_manager::Error [] [src]

pub enum Error {
    IO(IOError),
    TomlRead(TomlReadError),
    TomlWrite(TomlWriteError),
    Zip(ZipError),
    ZipPathError,
    InvalidTarget,
    PackageMissing,
    NameMissing,
    VersionMissing,
    NotString,
    NotTable,
}

Variants

Error performing io

Error reading from TOML strings

Error writing to TOML strings

Error while zipping file

Zip placement path doesn't exist

Target specified is not supported

Target crate has no [package] section

Target crate has no name

Target crate has no version

Expected a string (when parsing toml)

Expected a table (when parsing toml)

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl From<IOError> for Error
[src]

[src]

Performs the conversion.

impl From<TomlReadError> for Error
[src]

[src]

Performs the conversion.

impl From<TomlWriteError> for Error
[src]

[src]

Performs the conversion.

impl From<ZipError> for Error
[src]

[src]

Performs the conversion.

impl From<StripPrefixError> for Error
[src]

[src]

Performs the conversion.