pub struct ValidatedOutputParams {
pub output_id: ValidatedOutputId,
pub schema_id: OutputSchemaId,
pub schema_version: SchemaVersion,
pub schema_fingerprint: ContentHash,
pub canonical_value_ref: ContentRef,
pub repair_attempts: Vec<RepairAttemptId>,
pub source_attempt_ids: Vec<AttemptId>,
pub content_refs: Vec<ContentRef>,
pub lineage: OutputLineage,
pub policy_refs: Vec<PolicyRef>,
pub privacy: PrivacyClass,
pub redacted_summary: String,
}Expand description
Carries the validated output params record payload for journal, event, or fixture surfaces. Creating or cloning it only preserves serialized SDK state; append, publish, replay, or export effects are documented on the runtime and port methods that store it.
Fields§
§output_id: ValidatedOutputIdStable output id used for typed lineage, lookup, or dedupe.
schema_id: OutputSchemaIdStable schema id used for typed lineage, lookup, or dedupe.
schema_version: SchemaVersionWire schema version used for compatibility checks.
schema_fingerprint: ContentHashDeterministic schema fingerprint used for stale checks, package evidence, or replay comparisons.
canonical_value_ref: ContentRefTyped canonical value ref reference. Resolving or executing it is a separate policy-gated step.
repair_attempts: Vec<RepairAttemptId>Attempt identifier or attempt history for bounded retry/repair. Use it to preserve ordering and avoid retry loops that cannot be audited.
source_attempt_ids: Vec<AttemptId>Attempt identifier or attempt history for bounded retry/repair. Use it to preserve ordering and avoid retry loops that cannot be audited.
content_refs: Vec<ContentRef>Content references associated with this record; resolving them is a separate policy-gated step.
lineage: OutputLineageLineage information connecting this value to its source records. Use it to audit derived data without replaying side effects.
policy_refs: Vec<PolicyRef>Policy references that govern admission, projection, execution, or delivery.
privacy: PrivacyClassPrivacy class used for projection, telemetry, and raw-content access decisions.
redacted_summary: StringRedacted human-readable summary safe for events, telemetry, and logs.
Trait Implementations§
Source§impl Clone for ValidatedOutputParams
impl Clone for ValidatedOutputParams
Source§fn clone(&self) -> ValidatedOutputParams
fn clone(&self) -> ValidatedOutputParams
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ValidatedOutputParams
impl Debug for ValidatedOutputParams
Source§impl PartialEq for ValidatedOutputParams
impl PartialEq for ValidatedOutputParams
Source§fn eq(&self, other: &ValidatedOutputParams) -> bool
fn eq(&self, other: &ValidatedOutputParams) -> bool
self and other values to be equal, and is used by ==.