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