pub trait HasForkserver {
    fn forkserver(&self) -> &Forkserver;
fn forkserver_mut(&mut self) -> &mut Forkserver;
fn out_file(&self) -> &OutFile;
fn out_file_mut(&mut self) -> &mut OutFile;
fn map(&self) -> &Option<StdShMem>;
fn map_mut(&mut self) -> &mut Option<StdShMem>; }
Expand description

A struct that has a forkserver

Required methods

The forkserver

The forkserver, mutable

The file the forkserver is reading from

The file the forkserver is reading from, mutable

The map of the fuzzer

The map of the fuzzer, mutable

Implementors