pub struct WorkflowCoordinationResult {
pub success: bool,
pub duration: Duration,
pub stage_results: HashMap<StageId, StageResult>,
pub total_metrics: StageMetrics,
}Expand description
Result of workflow coordination
Fields§
§success: boolOverall success status
duration: DurationExecution duration
stage_results: HashMap<StageId, StageResult>Stage results
total_metrics: StageMetricsAggregated metrics
Trait Implementations§
Source§impl Clone for WorkflowCoordinationResult
impl Clone for WorkflowCoordinationResult
Source§fn clone(&self) -> WorkflowCoordinationResult
fn clone(&self) -> WorkflowCoordinationResult
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 WorkflowCoordinationResult
impl Debug for WorkflowCoordinationResult
Source§impl<'de> Deserialize<'de> for WorkflowCoordinationResult
impl<'de> Deserialize<'de> for WorkflowCoordinationResult
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
Auto Trait Implementations§
impl Freeze for WorkflowCoordinationResult
impl RefUnwindSafe for WorkflowCoordinationResult
impl Send for WorkflowCoordinationResult
impl Sync for WorkflowCoordinationResult
impl Unpin for WorkflowCoordinationResult
impl UnwindSafe for WorkflowCoordinationResult
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