pub struct ReplayStats {
pub total_replays: usize,
pub successful_replays: usize,
pub failed_replays: usize,
pub exact_matches: usize,
pub mismatches: usize,
pub total_execution_time_ms: f64,
pub average_execution_time_ms: f64,
}Fields§
§total_replays: usize§successful_replays: usize§failed_replays: usize§exact_matches: usize§mismatches: usize§total_execution_time_ms: f64§average_execution_time_ms: f64Trait Implementations§
Source§impl Clone for ReplayStats
impl Clone for ReplayStats
Source§fn clone(&self) -> ReplayStats
fn clone(&self) -> ReplayStats
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 ReplayStats
impl Debug for ReplayStats
Source§impl Default for ReplayStats
impl Default for ReplayStats
Source§fn default() -> ReplayStats
fn default() -> ReplayStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReplayStats
impl RefUnwindSafe for ReplayStats
impl Send for ReplayStats
impl Sync for ReplayStats
impl Unpin for ReplayStats
impl UnwindSafe for ReplayStats
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