MCPcopy Create free account
hub / github.com/MultiFuzz/MultiFuzz / LocalStats

Class LocalStats

hail-fuzz/src/monitor.rs:187–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185
186#[derive(Copy, Clone)]
187pub(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
201impl Default for LocalStats {
202 fn default() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected