#[non_exhaustive]
pub struct WorkflowExecutionInfo { pub execution: Option<WorkflowExecution>, pub workflow_type: Option<WorkflowType>, pub start_timestamp: Option<DateTime>, pub close_timestamp: Option<DateTime>, pub execution_status: Option<ExecutionStatus>, pub close_status: Option<CloseStatus>, pub parent: Option<WorkflowExecution>, pub tag_list: Option<Vec<String>>, pub cancel_requested: bool, }
Expand description

Contains information about a workflow execution.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
execution: Option<WorkflowExecution>

The workflow execution this information is about.

workflow_type: Option<WorkflowType>

The type of the workflow execution.

start_timestamp: Option<DateTime>

The time when the execution was started.

close_timestamp: Option<DateTime>

The time when the workflow execution was closed. Set only if the execution status is CLOSED.

execution_status: Option<ExecutionStatus>

The current status of the execution.

close_status: Option<CloseStatus>

If the execution status is closed then this specifies how the execution was closed:

  • COMPLETED – the execution was successfully completed.

  • CANCELED – the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed.

  • TERMINATED – the execution was force terminated.

  • FAILED – the execution failed to complete.

  • TIMED_OUT – the execution did not complete in the alloted time and was automatically timed out.

  • CONTINUED_AS_NEW – the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.

parent: Option<WorkflowExecution>

If this workflow execution is a child of another execution then contains the workflow execution that started this execution.

tag_list: Option<Vec<String>>

The list of tags associated with the workflow execution. Tags can be used to identify and list workflow executions of interest through the visibility APIs. A workflow execution can have a maximum of 5 tags.

cancel_requested: bool

Set to true if a cancellation is requested for this workflow execution.

Implementations

The workflow execution this information is about.

The type of the workflow execution.

The time when the execution was started.

The time when the workflow execution was closed. Set only if the execution status is CLOSED.

The current status of the execution.

If the execution status is closed then this specifies how the execution was closed:

  • COMPLETED – the execution was successfully completed.

  • CANCELED – the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed.

  • TERMINATED – the execution was force terminated.

  • FAILED – the execution failed to complete.

  • TIMED_OUT – the execution did not complete in the alloted time and was automatically timed out.

  • CONTINUED_AS_NEW – the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.

If this workflow execution is a child of another execution then contains the workflow execution that started this execution.

The list of tags associated with the workflow execution. Tags can be used to identify and list workflow executions of interest through the visibility APIs. A workflow execution can have a maximum of 5 tags.

Set to true if a cancellation is requested for this workflow execution.

Creates a new builder-style object to manufacture WorkflowExecutionInfo.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more