pub struct RunEvidence {
pub cancelled: bool,
pub exit: ExitClass,
pub commit_count: u64,
pub tests: Option<StageOutcome>,
pub merge: Option<MergeOutcome>,
}Expand description
Everything observed about one finished run. Fields are facts gathered by the supervisor; none of them are claims made by the agent.
Fields§
§cancelled: boolAn operator recorded cancellation intent before the exit was handled.
exit: ExitClass§commit_count: u64Commits on the run branch that are not on the default branch.
tests: Option<StageOutcome>None when no test stage ran: either the exit and commit evidence
never justified testing, or no test command is configured.
merge: Option<MergeOutcome>None when a merge was never attempted.
Trait Implementations§
Source§impl Clone for RunEvidence
impl Clone for RunEvidence
Source§fn clone(&self) -> RunEvidence
fn clone(&self) -> RunEvidence
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RunEvidence
impl Debug for RunEvidence
impl Eq for RunEvidence
Source§impl PartialEq for RunEvidence
impl PartialEq for RunEvidence
impl StructuralPartialEq for RunEvidence
Auto Trait Implementations§
impl Freeze for RunEvidence
impl RefUnwindSafe for RunEvidence
impl Send for RunEvidence
impl Sync for RunEvidence
impl Unpin for RunEvidence
impl UnsafeUnpin for RunEvidence
impl UnwindSafe for RunEvidence
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.