pub struct StepStateSummary {
pub state: StepState,
pub verdict_status: Option<String>,
pub degraded: Option<bool>,
pub act_chain_marks: Option<Vec<ActChainMark>>,
}Expand description
The minimal per-step overlay cell (2026-07-17 ruling, additive).
Fields§
§state: StepStateLast recorded step state (closed vocabulary).
verdict_status: Option<String>Verdict status once judged.
degraded: Option<bool>Degraded-verification marker of that verdict.
act_chain_marks: Option<Vec<ActChainMark>>Act-chain runtime marks of the LATEST acting pass (08 §3.4, incorporated 2026-07-18): one entry per SETTLED dispatch, keyed by 1-based chain position — chips beyond the highest marked index render untried by absence. Absent entirely on pre-incorporation ledgers and for undispatched steps (the graph never invents runtime state, principle 4).
Trait Implementations§
Source§impl Clone for StepStateSummary
impl Clone for StepStateSummary
Source§fn clone(&self) -> StepStateSummary
fn clone(&self) -> StepStateSummary
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 StepStateSummary
impl Debug for StepStateSummary
Source§impl<'de> Deserialize<'de> for StepStateSummary
impl<'de> Deserialize<'de> for StepStateSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for StepStateSummary
impl JsonSchema for StepStateSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for StepStateSummary
impl PartialEq for StepStateSummary
Source§impl Serialize for StepStateSummary
impl Serialize for StepStateSummary
impl StructuralPartialEq for StepStateSummary
Auto Trait Implementations§
impl Freeze for StepStateSummary
impl RefUnwindSafe for StepStateSummary
impl Send for StepStateSummary
impl Sync for StepStateSummary
impl Unpin for StepStateSummary
impl UnsafeUnpin for StepStateSummary
impl UnwindSafe for StepStateSummary
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