| 185 | |
| 186 | #[derive(Copy, Clone)] |
| 187 | pub(crate) struct LocalStats { |
| 188 | /// The total executions the last time stats were synced. |
| 189 | pub execs: u64, |
| 190 | |
| 191 | /// The number of crashes since last sync. |
| 192 | pub crashes: u64, |
| 193 | |
| 194 | /// The number of timeouts since last sync. |
| 195 | pub timeouts: u64, |
| 196 | |
| 197 | /// The last time the fuzzer was syncronized. |
| 198 | pub last_sync: Instant, |
| 199 | } |
| 200 | |
| 201 | impl Default for LocalStats { |
| 202 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected