pub enum RunOutcome {
Released {
commit_sha: Option<String>,
hosts: Vec<String>,
},
NoChange,
}Variants§
Released
commit_sha is Some when --git-commit was set and a commit landed.
NoChange
Closure hashes unchanged; only reachable with reuse_unchanged_signature.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunOutcome
impl RefUnwindSafe for RunOutcome
impl Send for RunOutcome
impl Sync for RunOutcome
impl Unpin for RunOutcome
impl UnwindSafe for RunOutcome
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