pub struct ChildWorkflowExecutionFailedEventAttributes {
pub details: Option<String>,
pub initiated_event_id: i64,
pub reason: Option<String>,
pub started_event_id: i64,
pub workflow_execution: WorkflowExecution,
pub workflow_type: WorkflowType,
}
Expand description
Provides the details of the ChildWorkflowExecutionFailed
event.
Fields§
§details: Option<String>
The details of the failure (if provided).
initiated_event_id: i64
The ID of the StartChildWorkflowExecutionInitiated
event corresponding to the StartChildWorkflowExecution
Decision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
reason: Option<String>
The reason for the failure (if provided).
started_event_id: i64
The ID of the ChildWorkflowExecutionStarted
event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
workflow_execution: WorkflowExecution
The child workflow execution that failed.
workflow_type: WorkflowType
The type of the child workflow execution.
Trait Implementations§
Source§impl Clone for ChildWorkflowExecutionFailedEventAttributes
impl Clone for ChildWorkflowExecutionFailedEventAttributes
Source§fn clone(&self) -> ChildWorkflowExecutionFailedEventAttributes
fn clone(&self) -> ChildWorkflowExecutionFailedEventAttributes
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 ChildWorkflowExecutionFailedEventAttributes
impl Default for ChildWorkflowExecutionFailedEventAttributes
Source§fn default() -> ChildWorkflowExecutionFailedEventAttributes
fn default() -> ChildWorkflowExecutionFailedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChildWorkflowExecutionFailedEventAttributes
impl<'de> Deserialize<'de> for ChildWorkflowExecutionFailedEventAttributes
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 ChildWorkflowExecutionFailedEventAttributes
impl PartialEq for ChildWorkflowExecutionFailedEventAttributes
Source§fn eq(&self, other: &ChildWorkflowExecutionFailedEventAttributes) -> bool
fn eq(&self, other: &ChildWorkflowExecutionFailedEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ChildWorkflowExecutionFailedEventAttributes
Auto Trait Implementations§
impl Freeze for ChildWorkflowExecutionFailedEventAttributes
impl RefUnwindSafe for ChildWorkflowExecutionFailedEventAttributes
impl Send for ChildWorkflowExecutionFailedEventAttributes
impl Sync for ChildWorkflowExecutionFailedEventAttributes
impl Unpin for ChildWorkflowExecutionFailedEventAttributes
impl UnwindSafe for ChildWorkflowExecutionFailedEventAttributes
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