pub struct ExtensionProtocolRecoveryRecord {
pub protocol_request_id: String,
pub error_kind: String,
pub redacted_summary: String,
pub runtime_package_fingerprint: String,
pub policy_refs: Vec<PolicyRef>,
}Expand description
Carries the extension protocol recovery record 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§
§protocol_request_id: StringStable protocol request id used for typed lineage, lookup, or dedupe.
error_kind: StringMachine-readable error kind reported by the adapter or protocol layer. Use it to classify recovery without parsing display text.
redacted_summary: StringRedacted human-readable summary safe for events, telemetry, and logs.
runtime_package_fingerprint: StringFingerprint of the runtime package snapshot in force when this value was produced. Use it for replay, dedupe, and package-lineage checks; the field is evidence and does not execute package behavior.
policy_refs: Vec<PolicyRef>Policy references that govern admission, projection, execution, or delivery.
Trait Implementations§
Source§impl Clone for ExtensionProtocolRecoveryRecord
impl Clone for ExtensionProtocolRecoveryRecord
Source§fn clone(&self) -> ExtensionProtocolRecoveryRecord
fn clone(&self) -> ExtensionProtocolRecoveryRecord
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'de> Deserialize<'de> for ExtensionProtocolRecoveryRecord
impl<'de> Deserialize<'de> for ExtensionProtocolRecoveryRecord
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>,
Source§impl PartialEq for ExtensionProtocolRecoveryRecord
impl PartialEq for ExtensionProtocolRecoveryRecord
Source§fn eq(&self, other: &ExtensionProtocolRecoveryRecord) -> bool
fn eq(&self, other: &ExtensionProtocolRecoveryRecord) -> bool
self and other values to be equal, and is used by ==.