pub struct ExecutionResult {
pub task_results: BTreeMap<TaskId, TaskResult>,
pub total_tasks: u32,
pub succeeded: u32,
pub failed: u32,
pub skipped: u32,
}Expand description
Aggregate result of executing an entire ExecutionPlan.
Fields§
§task_results: BTreeMap<TaskId, TaskResult>Per-task results keyed by TaskId.
total_tasks: u32Total tasks in the plan.
succeeded: u32Tasks that completed successfully.
failed: u32Tasks that failed after exhausting retries.
skipped: u32Tasks that were skipped due to upstream failures.
Auto Trait Implementations§
impl Freeze for ExecutionResult
impl RefUnwindSafe for ExecutionResult
impl Send for ExecutionResult
impl Sync for ExecutionResult
impl Unpin for ExecutionResult
impl UnwindSafe for ExecutionResult
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