pub struct EventOverflowNotice {
pub policy: SubscriberOverflowPolicy,
pub dropped_count: u64,
pub gap_start: Option<EventCursor>,
pub gap_end: EventCursor,
pub repair_from: Option<JournalCursor>,
pub terminal_preserved: bool,
pub reason: EventOverflowReason,
}Expand description
Carries the event overflow notice 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§
§policy: SubscriberOverflowPolicyPolicy used by this record or request.
dropped_count: u64Count of dropped items observed or included in this record.
gap_start: Option<EventCursor>Optional gap start value. When absent, callers should use the documented default or skip that optional behavior.
gap_end: EventCursorGap end used by this record or request.
repair_from: Option<JournalCursor>Repair policy used after structured output validation fails. It controls whether repair is attempted and which policy gates must approve it.
terminal_preserved: boolWhether terminal preserved is enabled. Policy, validation, or routing code uses this flag to choose the explicit behavior.
reason: EventOverflowReasonRedacted explanation for a denial, failure, status, or package delta.
Trait Implementations§
Source§impl Clone for EventOverflowNotice
impl Clone for EventOverflowNotice
Source§fn clone(&self) -> EventOverflowNotice
fn clone(&self) -> EventOverflowNotice
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 EventOverflowNotice
impl Debug for EventOverflowNotice
Source§impl<'de> Deserialize<'de> for EventOverflowNotice
impl<'de> Deserialize<'de> for EventOverflowNotice
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 EventOverflowNotice
impl PartialEq for EventOverflowNotice
Source§fn eq(&self, other: &EventOverflowNotice) -> bool
fn eq(&self, other: &EventOverflowNotice) -> bool
self and other values to be equal, and is used by ==.