pub enum VersionPublishOutcome {
Published,
AlreadyPublished,
Skipped,
Failed(String),
}Expand description
Outcome of publishing a single version.
Variants§
Published
Published successfully in this run.
AlreadyPublished
Already present on crates.io; skipped network publish.
Skipped
Was already Skipped in the ledger.
Failed(String)
Failed; contains the error message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VersionPublishOutcome
impl RefUnwindSafe for VersionPublishOutcome
impl Send for VersionPublishOutcome
impl Sync for VersionPublishOutcome
impl Unpin for VersionPublishOutcome
impl UnsafeUnpin for VersionPublishOutcome
impl UnwindSafe for VersionPublishOutcome
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