Enum release_manager::Error
[−]
[src]
pub enum Error {
IO(IOError),
TomlRead(TomlReadError),
TomlWrite(TomlWriteError),
Zip(ZipError),
ZipPath,
PathString,
InvalidTarget,
PackageMissing,
NameMissing,
VersionMissing,
NotString,
NotTable,
RePublish,
FailedBuilds,
}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
ZipPathZip placement path doesn't exist
PathStringPath could not be converted to string
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)
RePublishCannot publish already published crate
FailedBuildsSome builds failed
Trait Implementations
impl Debug for Error[src]
impl Display for Error[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
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.