pub struct FlowEventEnvelope {
pub run_id: String,
pub sequence: u64,
pub event_id: Uuid,
pub timestamp: DateTime<Utc>,
pub event: FlowEvent,
}Expand description
Stored event with per-run sequence and timestamp.
Fields§
§run_id: String§sequence: u64§event_id: Uuid§timestamp: DateTime<Utc>§event: FlowEventTrait Implementations§
Source§impl Clone for FlowEventEnvelope
impl Clone for FlowEventEnvelope
Source§fn clone(&self) -> FlowEventEnvelope
fn clone(&self) -> FlowEventEnvelope
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 FlowEventEnvelope
impl Debug for FlowEventEnvelope
Source§impl<'de> Deserialize<'de> for FlowEventEnvelope
impl<'de> Deserialize<'de> for FlowEventEnvelope
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
Source§impl PartialEq for FlowEventEnvelope
impl PartialEq for FlowEventEnvelope
Source§fn eq(&self, other: &FlowEventEnvelope) -> bool
fn eq(&self, other: &FlowEventEnvelope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FlowEventEnvelope
impl Serialize for FlowEventEnvelope
impl StructuralPartialEq for FlowEventEnvelope
Auto Trait Implementations§
impl Freeze for FlowEventEnvelope
impl RefUnwindSafe for FlowEventEnvelope
impl Send for FlowEventEnvelope
impl Sync for FlowEventEnvelope
impl Unpin for FlowEventEnvelope
impl UnsafeUnpin for FlowEventEnvelope
impl UnwindSafe for FlowEventEnvelope
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