pub struct EngineStats {
pub total_tasks_processed: u64,
pub successful_tasks: u64,
pub failed_tasks: u64,
pub average_task_time: Duration,
pub total_compute_time: Duration,
pub start_time: Instant,
}Fields§
§total_tasks_processed: u64§successful_tasks: u64§failed_tasks: u64§average_task_time: Duration§total_compute_time: Duration§start_time: InstantTrait Implementations§
Source§impl Clone for EngineStats
impl Clone for EngineStats
Source§fn clone(&self) -> EngineStats
fn clone(&self) -> EngineStats
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 EngineStats
impl Debug for EngineStats
Auto Trait Implementations§
impl Freeze for EngineStats
impl RefUnwindSafe for EngineStats
impl Send for EngineStats
impl Sync for EngineStats
impl Unpin for EngineStats
impl UnsafeUnpin for EngineStats
impl UnwindSafe for EngineStats
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