pub struct SignalExternalWorkflowExecutionInitiatedEventAttributes {
pub control: Option<String>,
pub decision_task_completed_event_id: i64,
pub input: Option<String>,
pub run_id: Option<String>,
pub signal_name: String,
pub workflow_id: String,
}
Expand description
Provides the details of the SignalExternalWorkflowExecutionInitiated
event.
Fields§
§control: Option<String>
Data attached to the event that can be used by the decider in subsequent decision tasks.
decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the SignalExternalWorkflowExecution
decision for this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
input: Option<String>
The input provided to the signal.
run_id: Option<String>
The runId
of the external workflow execution to send the signal to.
signal_name: String
The name of the signal.
workflow_id: String
The workflowId
of the external workflow execution.
Trait Implementations§
Source§impl Clone for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl Clone for SignalExternalWorkflowExecutionInitiatedEventAttributes
Source§fn clone(&self) -> SignalExternalWorkflowExecutionInitiatedEventAttributes
fn clone(&self) -> SignalExternalWorkflowExecutionInitiatedEventAttributes
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 SignalExternalWorkflowExecutionInitiatedEventAttributes
impl Default for SignalExternalWorkflowExecutionInitiatedEventAttributes
Source§fn default() -> SignalExternalWorkflowExecutionInitiatedEventAttributes
fn default() -> SignalExternalWorkflowExecutionInitiatedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl<'de> Deserialize<'de> for SignalExternalWorkflowExecutionInitiatedEventAttributes
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 SignalExternalWorkflowExecutionInitiatedEventAttributes
impl PartialEq for SignalExternalWorkflowExecutionInitiatedEventAttributes
Source§fn eq(
&self,
other: &SignalExternalWorkflowExecutionInitiatedEventAttributes,
) -> bool
fn eq( &self, other: &SignalExternalWorkflowExecutionInitiatedEventAttributes, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SignalExternalWorkflowExecutionInitiatedEventAttributes
Auto Trait Implementations§
impl Freeze for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl RefUnwindSafe for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl Send for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl Sync for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl Unpin for SignalExternalWorkflowExecutionInitiatedEventAttributes
impl UnwindSafe for SignalExternalWorkflowExecutionInitiatedEventAttributes
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