pub struct WorkflowExecutionDetail {
pub execution_configuration: WorkflowExecutionConfiguration,
pub execution_info: WorkflowExecutionInfo,
pub latest_activity_task_timestamp: Option<f64>,
pub latest_execution_context: Option<String>,
pub open_counts: WorkflowExecutionOpenCounts,
}
Expand description
Contains details about a workflow execution.
Fields§
§execution_configuration: WorkflowExecutionConfiguration
The configuration settings for this workflow execution including timeout values, tasklist etc.
execution_info: WorkflowExecutionInfo
Information about the workflow execution.
latest_activity_task_timestamp: Option<f64>
The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.
latest_execution_context: Option<String>
The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using RespondDecisionTaskCompleted.
open_counts: WorkflowExecutionOpenCounts
The number of tasks for this workflow execution. This includes open and closed tasks of all types.
Trait Implementations§
Source§impl Clone for WorkflowExecutionDetail
impl Clone for WorkflowExecutionDetail
Source§fn clone(&self) -> WorkflowExecutionDetail
fn clone(&self) -> WorkflowExecutionDetail
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 Debug for WorkflowExecutionDetail
impl Debug for WorkflowExecutionDetail
Source§impl Default for WorkflowExecutionDetail
impl Default for WorkflowExecutionDetail
Source§fn default() -> WorkflowExecutionDetail
fn default() -> WorkflowExecutionDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowExecutionDetail
impl<'de> Deserialize<'de> for WorkflowExecutionDetail
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 WorkflowExecutionDetail
impl PartialEq for WorkflowExecutionDetail
impl StructuralPartialEq for WorkflowExecutionDetail
Auto Trait Implementations§
impl Freeze for WorkflowExecutionDetail
impl RefUnwindSafe for WorkflowExecutionDetail
impl Send for WorkflowExecutionDetail
impl Sync for WorkflowExecutionDetail
impl Unpin for WorkflowExecutionDetail
impl UnwindSafe for WorkflowExecutionDetail
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