pub struct ParallelRunStats {
pub total_nodes: usize,
pub nodes_executed: usize,
pub succeeded: usize,
pub failures: usize,
pub total_elapsed: Duration,
pub stages_executed: usize,
pub max_concurrency: usize,
}Expand description
Aggregate statistics for a parallel execution run.
Fields§
§total_nodes: usizeTotal nodes executed.
nodes_executed: usizeNumber of nodes executed (alias for compatibility).
succeeded: usizeNumber of nodes that succeeded.
failures: usizeNumber of nodes that failed.
total_elapsed: DurationTotal wall-clock duration.
stages_executed: usizeNumber of stages executed.
max_concurrency: usizeMaximum concurrency observed (nodes running in a single stage).
Trait Implementations§
Source§impl Debug for ParallelRunStats
impl Debug for ParallelRunStats
Source§impl Default for ParallelRunStats
impl Default for ParallelRunStats
Source§fn default() -> ParallelRunStats
fn default() -> ParallelRunStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParallelRunStats
impl RefUnwindSafe for ParallelRunStats
impl Send for ParallelRunStats
impl Sync for ParallelRunStats
impl Unpin for ParallelRunStats
impl UnsafeUnpin for ParallelRunStats
impl UnwindSafe for ParallelRunStats
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more