pub struct ProcessEvent {
pub process_id: ProcessId,
pub sequence: u64,
pub event_type: String,
pub payload: Value,
pub invocation: RuntimeInvocation,
pub semantics: ProcessEventSemantics,
pub occurred_at: SystemTime,
}Fields§
§process_id: ProcessId§sequence: u64§event_type: String§payload: Value§invocation: RuntimeInvocation§semantics: ProcessEventSemantics§occurred_at: SystemTimeTrait Implementations§
Source§impl Clone for ProcessEvent
impl Clone for ProcessEvent
Source§fn clone(&self) -> ProcessEvent
fn clone(&self) -> ProcessEvent
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 ProcessEvent
impl Debug for ProcessEvent
Source§impl<'de> Deserialize<'de> for ProcessEvent
impl<'de> Deserialize<'de> for ProcessEvent
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 From<ProcessEvent> for ObservedProcessEvent
impl From<ProcessEvent> for ObservedProcessEvent
Source§fn from(event: ProcessEvent) -> Self
fn from(event: ProcessEvent) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProcessEvent
impl RefUnwindSafe for ProcessEvent
impl Send for ProcessEvent
impl Sync for ProcessEvent
impl Unpin for ProcessEvent
impl UnsafeUnpin for ProcessEvent
impl UnwindSafe for ProcessEvent
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