pub struct OutputDeliveryDedupeRecord {
pub delivery_id: OutputDeliveryId,
pub dedupe_key: DedupeKey,
pub prior_delivery_id: Option<OutputDeliveryId>,
pub prior_external_operation_id: Option<String>,
pub prior_terminal_status: OutputDispatchStatus,
pub current_status: OutputDispatchStatus,
pub redacted_summary: String,
pub policy_refs: Vec<PolicyRef>,
}Expand description
Carries the output delivery dedupe 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§
§delivery_id: OutputDeliveryIdStable delivery id used for typed lineage, lookup, or dedupe.
dedupe_key: DedupeKeyDedupe policy or key for a side-effecting operation. Replay and repair use it to avoid sending or executing the same effect twice.
prior_delivery_id: Option<OutputDeliveryId>Stable prior delivery id used for typed lineage, lookup, or dedupe.
prior_external_operation_id: Option<String>External sink operation id from a previous delivery attempt, when known. Reconciliation uses it to avoid duplicate sends and to connect repaired evidence to the prior external operation.
prior_terminal_status: OutputDispatchStatusPrior terminal status used by this record or request.
current_status: OutputDispatchStatusCurrent status used by this record or request.
redacted_summary: StringRedacted human-readable summary safe for events, telemetry, and logs.
policy_refs: Vec<PolicyRef>Policy references that govern admission, projection, execution, or delivery.
Implementations§
Source§impl OutputDeliveryDedupeRecord
impl OutputDeliveryDedupeRecord
Sourcepub fn to_journal_record(
&self,
base: OutputDeliveryJournalBase,
destination: DestinationRef,
) -> JournalRecord
pub fn to_journal_record( &self, base: OutputDeliveryJournalBase, destination: DestinationRef, ) -> JournalRecord
Converts this value into journal record data. This is data-only and does not perform I/O, call host ports, append journals, publish events, or start processes.
Trait Implementations§
Source§impl Clone for OutputDeliveryDedupeRecord
impl Clone for OutputDeliveryDedupeRecord
Source§fn clone(&self) -> OutputDeliveryDedupeRecord
fn clone(&self) -> OutputDeliveryDedupeRecord
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 OutputDeliveryDedupeRecord
impl Debug for OutputDeliveryDedupeRecord
Source§impl<'de> Deserialize<'de> for OutputDeliveryDedupeRecord
impl<'de> Deserialize<'de> for OutputDeliveryDedupeRecord
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 OutputDeliveryDedupeRecord
impl PartialEq for OutputDeliveryDedupeRecord
Source§fn eq(&self, other: &OutputDeliveryDedupeRecord) -> bool
fn eq(&self, other: &OutputDeliveryDedupeRecord) -> bool
self and other values to be equal, and is used by ==.