pub struct RunEvidence {
pub cancelled: bool,
pub exit: ExitClass,
pub vendor_error: Option<VendorErrorClass>,
pub commit_count: Option<usize>,
pub aftercare_failed: bool,
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§vendor_error: Option<VendorErrorClass>A rejection recognized from the adapter’s captured output.
commit_count: Option<usize>Commits are activity metadata except when aftercare fails: committed
work is then preserved for review, while a known unchanged branch
failed. None means commit enumeration was incomplete.
aftercare_failed: boolWhether a flow stage after the first stage failed.
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.