pub struct ShrinkStatistics {
pub total_steps: usize,
pub successful_steps: usize,
pub total_time: Duration,
pub average_step_time: Duration,
pub success_rate: f64,
}Expand description
Statistics about shrinking performance
Fields§
§total_steps: usize§successful_steps: usize§total_time: Duration§average_step_time: Duration§success_rate: f64Trait Implementations§
Source§impl Clone for ShrinkStatistics
impl Clone for ShrinkStatistics
Source§fn clone(&self) -> ShrinkStatistics
fn clone(&self) -> ShrinkStatistics
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 ShrinkStatistics
impl Debug for ShrinkStatistics
Auto Trait Implementations§
impl Freeze for ShrinkStatistics
impl RefUnwindSafe for ShrinkStatistics
impl Send for ShrinkStatistics
impl Sync for ShrinkStatistics
impl Unpin for ShrinkStatistics
impl UnwindSafe for ShrinkStatistics
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