pub struct EventCorrelation {
pub entries: Vec<CorrelationEntry>,
}Expand description
Carries the event correlation 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§
§entries: Vec<CorrelationEntry>Bounded entries included in this record. Limits and truncation are represented by companion metadata when applicable.
Trait Implementations§
Source§impl Clone for EventCorrelation
impl Clone for EventCorrelation
Source§fn clone(&self) -> EventCorrelation
fn clone(&self) -> EventCorrelation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventCorrelation
impl Debug for EventCorrelation
Source§impl Default for EventCorrelation
impl Default for EventCorrelation
Source§fn default() -> EventCorrelation
fn default() -> EventCorrelation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventCorrelation
impl<'de> Deserialize<'de> for EventCorrelation
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EventCorrelation
Source§impl PartialEq for EventCorrelation
impl PartialEq for EventCorrelation
Source§fn eq(&self, other: &EventCorrelation) -> bool
fn eq(&self, other: &EventCorrelation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EventCorrelation
impl Serialize for EventCorrelation
impl StructuralPartialEq for EventCorrelation
Auto Trait Implementations§
impl Freeze for EventCorrelation
impl RefUnwindSafe for EventCorrelation
impl Send for EventCorrelation
impl Sync for EventCorrelation
impl Unpin for EventCorrelation
impl UnsafeUnpin for EventCorrelation
impl UnwindSafe for EventCorrelation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more