pub enum Verdict {
NoRuns,
Pending,
Success,
Failure,
}Expand description
Aggregate CI verdict for one commit.
Variants§
NoRuns
No check runs reported yet (CI may not have started).
Pending
At least one run still queued or in progress.
Success
All runs completed successfully (incl. neutral/skipped).
Failure
At least one run completed unsuccessfully.
Trait Implementations§
impl Copy for Verdict
impl Eq for Verdict
impl StructuralPartialEq for Verdict
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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