pub struct StageEvidence {
pub stage: String,
pub verdict: Verdict,
pub source: VerdictSource,
pub reason: Option<String>,
}Expand description
One stage’s recorded result. Rows persist as they are produced, so a
daemon crash mid-flow resumes idempotently at the first stage without a
row: next_step re-derives the same answer from the same rows.
Fields§
§stage: String§verdict: Verdict§source: VerdictSource§reason: Option<String>Trait Implementations§
Source§impl Clone for StageEvidence
impl Clone for StageEvidence
Source§fn clone(&self) -> StageEvidence
fn clone(&self) -> StageEvidence
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 StageEvidence
impl Debug for StageEvidence
impl Eq for StageEvidence
Source§impl PartialEq for StageEvidence
impl PartialEq for StageEvidence
impl StructuralPartialEq for StageEvidence
Auto Trait Implementations§
impl Freeze for StageEvidence
impl RefUnwindSafe for StageEvidence
impl Send for StageEvidence
impl Sync for StageEvidence
impl Unpin for StageEvidence
impl UnsafeUnpin for StageEvidence
impl UnwindSafe for StageEvidence
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.