pub struct ProcessTaskEventNotification {
pub execution_id: String,
pub event: ProcessTaskEvent,
}Expand description
tasks/event notification payload (child -> host). The host routes by
execution_id; completed/failed are terminal.
Fields§
§execution_id: String§event: ProcessTaskEventTrait Implementations§
Source§impl Clone for ProcessTaskEventNotification
impl Clone for ProcessTaskEventNotification
Source§fn clone(&self) -> ProcessTaskEventNotification
fn clone(&self) -> ProcessTaskEventNotification
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 ProcessTaskEventNotification
impl Debug for ProcessTaskEventNotification
Source§impl<'de> Deserialize<'de> for ProcessTaskEventNotification
impl<'de> Deserialize<'de> for ProcessTaskEventNotification
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 ProcessTaskEventNotification
impl PartialEq for ProcessTaskEventNotification
Source§fn eq(&self, other: &ProcessTaskEventNotification) -> bool
fn eq(&self, other: &ProcessTaskEventNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessTaskEventNotification
Auto Trait Implementations§
impl Freeze for ProcessTaskEventNotification
impl RefUnwindSafe for ProcessTaskEventNotification
impl Send for ProcessTaskEventNotification
impl Sync for ProcessTaskEventNotification
impl Unpin for ProcessTaskEventNotification
impl UnsafeUnpin for ProcessTaskEventNotification
impl UnwindSafe for ProcessTaskEventNotification
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