pub struct WorkflowExecutionFailedEventAttributes {
pub decision_task_completed_event_id: i64,
pub details: Option<String>,
pub reason: Option<String>,
}
Expand description
Provides the details of the WorkflowExecutionFailed
event.
Fields§
§decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the FailWorkflowExecution
decision to fail this execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
details: Option<String>
The details of the failure.
reason: Option<String>
The descriptive reason provided for the failure.
Trait Implementations§
Source§impl Clone for WorkflowExecutionFailedEventAttributes
impl Clone for WorkflowExecutionFailedEventAttributes
Source§fn clone(&self) -> WorkflowExecutionFailedEventAttributes
fn clone(&self) -> WorkflowExecutionFailedEventAttributes
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 WorkflowExecutionFailedEventAttributes
impl Default for WorkflowExecutionFailedEventAttributes
Source§fn default() -> WorkflowExecutionFailedEventAttributes
fn default() -> WorkflowExecutionFailedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowExecutionFailedEventAttributes
impl<'de> Deserialize<'de> for WorkflowExecutionFailedEventAttributes
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 WorkflowExecutionFailedEventAttributes
impl PartialEq for WorkflowExecutionFailedEventAttributes
Source§fn eq(&self, other: &WorkflowExecutionFailedEventAttributes) -> bool
fn eq(&self, other: &WorkflowExecutionFailedEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WorkflowExecutionFailedEventAttributes
Auto Trait Implementations§
impl Freeze for WorkflowExecutionFailedEventAttributes
impl RefUnwindSafe for WorkflowExecutionFailedEventAttributes
impl Send for WorkflowExecutionFailedEventAttributes
impl Sync for WorkflowExecutionFailedEventAttributes
impl Unpin for WorkflowExecutionFailedEventAttributes
impl UnwindSafe for WorkflowExecutionFailedEventAttributes
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