pub struct FuzzerStats {
pub total_number_of_runs: usize,
pub number_of_runs_since_last_reset_time: usize,
pub exec_per_s: usize,
}Fields§
§total_number_of_runs: usize§number_of_runs_since_last_reset_time: usize§exec_per_s: usizeTrait Implementations§
Source§impl Clone for FuzzerStats
impl Clone for FuzzerStats
Source§fn clone(&self) -> FuzzerStats
fn clone(&self) -> FuzzerStats
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 Default for FuzzerStats
impl Default for FuzzerStats
Source§fn default() -> FuzzerStats
fn default() -> FuzzerStats
Returns the “default value” for a type. Read more
impl Copy for FuzzerStats
Auto Trait Implementations§
impl Freeze for FuzzerStats
impl RefUnwindSafe for FuzzerStats
impl Send for FuzzerStats
impl Sync for FuzzerStats
impl Unpin for FuzzerStats
impl UnwindSafe for FuzzerStats
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