#[non_exhaustive]pub struct ReconcileStats {
pub codex_interacted_rows: i32,
pub codex_threads_anchored: i32,
pub codex_threads_unanchored: i32,
pub conversation_joined: i32,
pub conversation_total: i32,
pub forked_chains: i32,
pub main_chains_joined: i32,
pub subagent_forks: i32,
pub transcript_files: i32,
}Expand description
The transcript-to-wire fusion for one org.
Models the contract’s ReconcileStats schema.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.codex_interacted_rows: i32Counts anchor rows carrying a non-started kind — interacted re-entries a capture client banked for future rendering.
codex_threads_anchored: i32Codex thread-spawn anchoring (see codex.go). Unanchored threads degrade to trace-root placement — a non-zero count is the visible signal that spawn-anchor rows are missing or ambiguous.
codex_threads_unanchored: i32The contract’s codex_threads_unanchored.
conversation_joined: i32ConversationJoined and ConversationTotal measure how many
conversation- spine nodes’ content appears in a transcript — the Go-
native version of the prototype’s join-rate oracle.
conversation_total: i32The contract’s conversation_total.
forked_chains: i32The contract’s forked_chains.
main_chains_joined: i32The contract’s main_chains_joined.
subagent_forks: i32The contract’s subagent_forks.
transcript_files: i32The contract’s transcript_files.
Trait Implementations§
Source§impl Clone for ReconcileStats
impl Clone for ReconcileStats
Source§fn clone(&self) -> ReconcileStats
fn clone(&self) -> ReconcileStats
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more