pub trait FuzzTarget: Plugin {
    fn add_headless_plugins(&mut self, app: &mut App) { ... }
fn add_gui_plugins(&mut self, app: &mut App) { ... }
fn enable_gui_mode(&mut self, app: &mut App) { ... }
fn enable_recording_mode(&mut self, app: &mut App) { ... }
fn enable_fuzzing_mode(&mut self, app: &mut App) { ... }
fn enable_apply_mode(&mut self, app: &mut App, data: Vec<FuzzInput>) { ... } }

Provided methods

Internal: do not implement

Internal: do not implement

Internal: do not implement

Internal: do not implement

Implementors