pub struct NodeExecutionStats {
pub total_tasks: usize,
pub successful_tasks: usize,
pub failed_tasks: usize,
pub avg_execution_time: Duration,
}
Fields§
§total_tasks: usize
§successful_tasks: usize
§failed_tasks: usize
§avg_execution_time: Duration
Trait Implementations§
Source§impl Clone for NodeExecutionStats
impl Clone for NodeExecutionStats
Source§fn clone(&self) -> NodeExecutionStats
fn clone(&self) -> NodeExecutionStats
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 moreAuto Trait Implementations§
impl Freeze for NodeExecutionStats
impl RefUnwindSafe for NodeExecutionStats
impl Send for NodeExecutionStats
impl Sync for NodeExecutionStats
impl Unpin for NodeExecutionStats
impl UnwindSafe for NodeExecutionStats
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