pub struct RunResult {
pub success_count: usize,
pub failure_count: usize,
pub skipped_count: usize,
pub cached_count: usize,
pub task_results: Vec<TaskResult>,
pub total_duration: Duration,
}Expand description
Aggregate result of running all tasks.
Fields§
§success_count: usizeNumber of tasks that succeeded.
failure_count: usizeNumber of tasks that failed.
skipped_count: usizeNumber of tasks that were skipped (due to fail-fast).
cached_count: usizeNumber of tasks that were served from cache.
task_results: Vec<TaskResult>Individual task results in completion order.
total_duration: DurationTotal duration of the run.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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