#[non_exhaustive]pub struct WorkflowExecutionCompletedEventAttributes { /* private fields */ }
Expand description
Provides the details of the WorkflowExecutionCompleted
event.
Implementations
sourceimpl WorkflowExecutionCompletedEventAttributes
impl WorkflowExecutionCompletedEventAttributes
sourcepub fn result(&self) -> Option<&str>
pub fn result(&self) -> Option<&str>
The result produced by the workflow execution upon successful completion.
sourcepub fn decision_task_completed_event_id(&self) -> i64
pub fn decision_task_completed_event_id(&self) -> 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.
sourceimpl WorkflowExecutionCompletedEventAttributes
impl WorkflowExecutionCompletedEventAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture WorkflowExecutionCompletedEventAttributes
.
Trait Implementations
sourceimpl Clone for WorkflowExecutionCompletedEventAttributes
impl Clone for WorkflowExecutionCompletedEventAttributes
sourcefn clone(&self) -> WorkflowExecutionCompletedEventAttributes
fn clone(&self) -> WorkflowExecutionCompletedEventAttributes
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<WorkflowExecutionCompletedEventAttributes> for WorkflowExecutionCompletedEventAttributes
impl PartialEq<WorkflowExecutionCompletedEventAttributes> for WorkflowExecutionCompletedEventAttributes
sourcefn eq(&self, other: &WorkflowExecutionCompletedEventAttributes) -> bool
fn eq(&self, other: &WorkflowExecutionCompletedEventAttributes) -> bool
impl StructuralPartialEq for WorkflowExecutionCompletedEventAttributes
Auto Trait Implementations
impl RefUnwindSafe for WorkflowExecutionCompletedEventAttributes
impl Send for WorkflowExecutionCompletedEventAttributes
impl Sync for WorkflowExecutionCompletedEventAttributes
impl Unpin for WorkflowExecutionCompletedEventAttributes
impl UnwindSafe for WorkflowExecutionCompletedEventAttributes
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more