pub struct ExternalWorkflowExecutionSignaledEventAttributes {
pub initiated_event_id: i64,
pub workflow_execution: WorkflowExecution,
}
Expand description
Provides the details of the ExternalWorkflowExecutionSignaled
event.
Fields§
§initiated_event_id: i64
The ID of the SignalExternalWorkflowExecutionInitiated
event corresponding to the SignalExternalWorkflowExecution
decision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
workflow_execution: WorkflowExecution
The external workflow execution that the signal was delivered to.
Trait Implementations§
Source§impl Clone for ExternalWorkflowExecutionSignaledEventAttributes
impl Clone for ExternalWorkflowExecutionSignaledEventAttributes
Source§fn clone(&self) -> ExternalWorkflowExecutionSignaledEventAttributes
fn clone(&self) -> ExternalWorkflowExecutionSignaledEventAttributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ExternalWorkflowExecutionSignaledEventAttributes
impl Default for ExternalWorkflowExecutionSignaledEventAttributes
Source§fn default() -> ExternalWorkflowExecutionSignaledEventAttributes
fn default() -> ExternalWorkflowExecutionSignaledEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalWorkflowExecutionSignaledEventAttributes
impl<'de> Deserialize<'de> for ExternalWorkflowExecutionSignaledEventAttributes
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 ExternalWorkflowExecutionSignaledEventAttributes
impl PartialEq for ExternalWorkflowExecutionSignaledEventAttributes
Source§fn eq(&self, other: &ExternalWorkflowExecutionSignaledEventAttributes) -> bool
fn eq(&self, other: &ExternalWorkflowExecutionSignaledEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExternalWorkflowExecutionSignaledEventAttributes
Auto Trait Implementations§
impl Freeze for ExternalWorkflowExecutionSignaledEventAttributes
impl RefUnwindSafe for ExternalWorkflowExecutionSignaledEventAttributes
impl Send for ExternalWorkflowExecutionSignaledEventAttributes
impl Sync for ExternalWorkflowExecutionSignaledEventAttributes
impl Unpin for ExternalWorkflowExecutionSignaledEventAttributes
impl UnwindSafe for ExternalWorkflowExecutionSignaledEventAttributes
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