pub enum DryRunOutcome {
Pass,
PackageFailed(String),
PathDepsFound(Vec<String>),
CargoCheckFailed(String),
}Expand description
Outcome of a dry-run for a single version.
Variants§
Pass
cargo package --allow-dirty succeeded.
PackageFailed(String)
cargo package failed; contains stderr.
PathDepsFound(Vec<String>)
Path dependencies were found; lists dep names.
CargoCheckFailed(String)
cargo check failed; contains stderr.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DryRunOutcome
impl RefUnwindSafe for DryRunOutcome
impl Send for DryRunOutcome
impl Sync for DryRunOutcome
impl Unpin for DryRunOutcome
impl UnsafeUnpin for DryRunOutcome
impl UnwindSafe for DryRunOutcome
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