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