pub struct ProcessWakeDelivery {
pub wake_id: String,
pub target_session_id: String,
pub target_scope_id: ProcessScopeId,
pub process_id: ProcessId,
pub sequence: u64,
pub event_type: String,
pub event_invocation: RuntimeInvocation,
pub process_caused_by: Option<CausalRef>,
pub dedupe_key: String,
pub input: String,
pub created_at_ms: u64,
}Fields§
§wake_id: String§target_session_id: String§target_scope_id: ProcessScopeId§process_id: ProcessId§sequence: u64§event_type: String§event_invocation: RuntimeInvocation§process_caused_by: Option<CausalRef>§dedupe_key: String§input: String§created_at_ms: u64Trait Implementations§
Source§impl Clone for ProcessWakeDelivery
impl Clone for ProcessWakeDelivery
Source§fn clone(&self) -> ProcessWakeDelivery
fn clone(&self) -> ProcessWakeDelivery
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 ProcessWakeDelivery
impl Debug for ProcessWakeDelivery
Source§impl<'de> Deserialize<'de> for ProcessWakeDelivery
impl<'de> Deserialize<'de> for ProcessWakeDelivery
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 ProcessWakeDelivery
impl PartialEq for ProcessWakeDelivery
Source§fn eq(&self, other: &ProcessWakeDelivery) -> bool
fn eq(&self, other: &ProcessWakeDelivery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessWakeDelivery
impl Serialize for ProcessWakeDelivery
impl StructuralPartialEq for ProcessWakeDelivery
Auto Trait Implementations§
impl Freeze for ProcessWakeDelivery
impl RefUnwindSafe for ProcessWakeDelivery
impl Send for ProcessWakeDelivery
impl Sync for ProcessWakeDelivery
impl Unpin for ProcessWakeDelivery
impl UnsafeUnpin for ProcessWakeDelivery
impl UnwindSafe for ProcessWakeDelivery
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