pub enum WaitOutcome {
Passed,
Failed,
Landed,
}Expand description
The result of waiting on a review’s checks before merging it.
Variants§
Passed
Checks passed, or there are none - go ahead and merge.
Failed
A required check failed - stop the run.
Landed
The review merged out-of-band while we waited (an admin merge on the
web, say). Skip the redundant merge and let sync reconcile it.
Auto Trait Implementations§
impl Freeze for WaitOutcome
impl RefUnwindSafe for WaitOutcome
impl Send for WaitOutcome
impl Sync for WaitOutcome
impl Unpin for WaitOutcome
impl UnsafeUnpin for WaitOutcome
impl UnwindSafe for WaitOutcome
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