pub struct RunEvidence {
pub cancelled: bool,
pub stalled: bool,
pub exit: ExitClass,
pub vendor_error: Option<VendorErrorClass>,
pub commit_count: Option<usize>,
pub halt: Option<FlowHalt>,
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.
stalled: boolThe output watchdog recorded termination intent before process exit.
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 the walk halts past the
first stage: committed work is then preserved for review, while a
known unchanged branch failed. None means commit enumeration was
incomplete.
halt: Option<FlowHalt>Where the flow walk stopped short, if it did.
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.