Enum release_manager::Error
[−]
[src]
pub enum Error {
IO(IOError),
TomlRead(TomlReadError),
TomlWrite(TomlWriteError),
Zip(ZipError),
ZipPathError,
InvalidTarget,
PackageMissing,
NameMissing,
VersionMissing,
NotString,
NotTable,
}Variants
IO(IOError)Error performing io
TomlRead(TomlReadError)Error reading from TOML strings
TomlWrite(TomlWriteError)Error writing to TOML strings
Zip(ZipError)Error while zipping file
ZipPathErrorZip placement path doesn't exist
InvalidTargetTarget specified is not supported
PackageMissingTarget crate has no [package] section
NameMissingTarget crate has no name
VersionMissingTarget crate has no version
NotStringExpected a string (when parsing toml)
NotTableExpected a table (when parsing toml)
Trait Implementations
impl Debug for Error[src]
impl From<IOError> for Error[src]
impl From<TomlReadError> for Error[src]
fn from(err: TomlReadError) -> Self[src]
Performs the conversion.
impl From<TomlWriteError> for Error[src]
fn from(err: TomlWriteError) -> Self[src]
Performs the conversion.
impl From<ZipError> for Error[src]
impl From<StripPrefixError> for Error[src]
fn from(_: StripPrefixError) -> Self[src]
Performs the conversion.