pub struct AFLStat {Show 30 fields
pub start_time: u64,
pub last_update: u64,
pub fuzzer_pid: u32,
pub cycles_done: i32,
pub execs_done: i64,
pub execs_per_sec: f64,
pub paths_total: i64,
pub paths_favored: i64,
pub paths_found: i64,
pub paths_imported: i64,
pub max_depth: i32,
pub cur_path: i64,
pub pending_favs: i64,
pub pending_total: i64,
pub variable_paths: i64,
pub stability: f64,
pub bitmap_cvg: f64,
pub unique_crashes: i32,
pub unique_hangs: i32,
pub last_path: u64,
pub last_crash: u64,
pub last_hang: u64,
pub execs_since_crash: i64,
pub exec_timeout: i32,
pub slowest_exec_ms: i32,
pub peak_rss_mb: i32,
pub afl_banner: String,
pub afl_version: String,
pub target_mode: String,
pub command_line: String,
}
Expand description
AFL status data.
This is the primary struct in this crate.
Fields§
§start_time: u64
§last_update: u64
§fuzzer_pid: u32
§cycles_done: i32
§execs_done: i64
§execs_per_sec: f64
§paths_total: i64
§paths_favored: i64
§paths_found: i64
§paths_imported: i64
§max_depth: i32
§cur_path: i64
§pending_favs: i64
§pending_total: i64
§variable_paths: i64
§stability: f64
§bitmap_cvg: f64
§unique_crashes: i32
§unique_hangs: i32
§last_path: u64
§last_crash: u64
§last_hang: u64
§execs_since_crash: i64
§exec_timeout: i32
§slowest_exec_ms: i32
§peak_rss_mb: i32
§afl_version: String
§target_mode: String
§command_line: String
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AFLStat
impl RefUnwindSafe for AFLStat
impl Send for AFLStat
impl Sync for AFLStat
impl Unpin for AFLStat
impl UnwindSafe for AFLStat
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