pub struct ExternalWorkflowExecutionCancelRequestedEventAttributes {
pub initiated_event_id: i64,
pub workflow_execution: WorkflowExecution,
}
Expand description
Provides the details of the ExternalWorkflowExecutionCancelRequested
event.
Fields§
§initiated_event_id: i64
The ID of the RequestCancelExternalWorkflowExecutionInitiated
event corresponding to the RequestCancelExternalWorkflowExecution
decision to cancel this external workflow execution. 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 to which the cancellation request was delivered.
Trait Implementations§
Source§impl Clone for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Clone for ExternalWorkflowExecutionCancelRequestedEventAttributes
Source§fn clone(&self) -> ExternalWorkflowExecutionCancelRequestedEventAttributes
fn clone(&self) -> ExternalWorkflowExecutionCancelRequestedEventAttributes
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 ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Default for ExternalWorkflowExecutionCancelRequestedEventAttributes
Source§fn default() -> ExternalWorkflowExecutionCancelRequestedEventAttributes
fn default() -> ExternalWorkflowExecutionCancelRequestedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl<'de> Deserialize<'de> for ExternalWorkflowExecutionCancelRequestedEventAttributes
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 ExternalWorkflowExecutionCancelRequestedEventAttributes
impl PartialEq for ExternalWorkflowExecutionCancelRequestedEventAttributes
Source§fn eq(
&self,
other: &ExternalWorkflowExecutionCancelRequestedEventAttributes,
) -> bool
fn eq( &self, other: &ExternalWorkflowExecutionCancelRequestedEventAttributes, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExternalWorkflowExecutionCancelRequestedEventAttributes
Auto Trait Implementations§
impl Freeze for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl RefUnwindSafe for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Send for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Sync for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Unpin for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl UnwindSafe for ExternalWorkflowExecutionCancelRequestedEventAttributes
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