pub enum PrepareUploadError {
Show 16 variants
GbpDchFailed,
NoUnuploadedChanges(Version),
LastUploadMoreRecent(Version, Version),
LastReleaseRevisionNotFound(String, Version),
NoUnreleasedChanges(Version),
GeneratedChangelogFile,
NoValidGpgSignature(RevisionId, VerificationResult),
Rejected(RevisionRejected),
BuildFailed,
MissingUpstreamTarball(String, String),
PackageVersionNotPresent(String, String),
MissingChangelog,
ChangelogParseError(String),
BrzError(Error),
DebianError(Error),
MissingNestedTree(PathBuf),
}Variants§
GbpDchFailed
Failed to run gbp dch
NoUnuploadedChanges(Version)
No unuploaded changes since the last upload
LastUploadMoreRecent(Version, Version)
The last upload was more recent than the previous upload
LastReleaseRevisionNotFound(String, Version)
The last release revision was not found
NoUnreleasedChanges(Version)
No unreleased changes
GeneratedChangelogFile
Generated changelog file
NoValidGpgSignature(RevisionId, VerificationResult)
No valid GPG signature
Rejected(RevisionRejected)
Revision rejected
BuildFailed
Build failed
MissingUpstreamTarball(String, String)
Missing upstream tarball
PackageVersionNotPresent(String, String)
Package version not present
MissingChangelog
ChangelogParseError(String)
BrzError(Error)
DebianError(Error)
MissingNestedTree(PathBuf)
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for PrepareUploadError
impl !RefUnwindSafe for PrepareUploadError
impl Send for PrepareUploadError
impl Sync for PrepareUploadError
impl Unpin for PrepareUploadError
impl !UnwindSafe for PrepareUploadError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more