pub struct RetryStats {
pub total_retries: u32,
pub tests_retried: usize,
pub tests_fixed: usize,
pub tests_still_failing: usize,
pub total_retry_time: Duration,
}Expand description
Statistics about a retry session.
Fields§
§total_retries: u32Total retry attempts made
tests_retried: usizeTotal tests retried
tests_fixed: usizeTests fixed by retries
tests_still_failing: usizeTests still failing after all retries
total_retry_time: DurationTotal time spent retrying
Trait Implementations§
Source§impl Clone for RetryStats
impl Clone for RetryStats
Source§fn clone(&self) -> RetryStats
fn clone(&self) -> RetryStats
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 RetryStats
impl RefUnwindSafe for RetryStats
impl Send for RetryStats
impl Sync for RetryStats
impl Unpin for RetryStats
impl UnsafeUnpin for RetryStats
impl UnwindSafe for RetryStats
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