Struct puffin::fuzzer::FuzzerConfig
source · pub struct FuzzerConfig {Show 14 fields
pub initial_corpus_dir: PathBuf,
pub static_seed: Option<u64>,
pub max_iters: Option<u64>,
pub core_definition: String,
pub stats_file: PathBuf,
pub corpus_dir: PathBuf,
pub objective_dir: PathBuf,
pub broker_port: u16,
pub minimizer: bool,
pub mutation_stage_config: MutationStageConfig,
pub mutation_config: MutationConfig,
pub tui: bool,
pub no_launcher: bool,
pub log_file: PathBuf,
}
Fields§
§initial_corpus_dir: PathBuf
§static_seed: Option<u64>
§max_iters: Option<u64>
§core_definition: String
§stats_file: PathBuf
§corpus_dir: PathBuf
§objective_dir: PathBuf
§broker_port: u16
§minimizer: bool
§mutation_stage_config: MutationStageConfig
§mutation_config: MutationConfig
§tui: bool
§no_launcher: bool
§log_file: PathBuf
Trait Implementations§
source§impl Clone for FuzzerConfig
impl Clone for FuzzerConfig
source§fn clone(&self) -> FuzzerConfig
fn clone(&self) -> FuzzerConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for FuzzerConfig
impl RefUnwindSafe for FuzzerConfig
impl Send for FuzzerConfig
impl Sync for FuzzerConfig
impl Unpin for FuzzerConfig
impl UnwindSafe for FuzzerConfig
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
§impl<T> CloneAny for T
impl<T> CloneAny for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Tail, T> Prepend<T> for Tail
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
type PreprendResult = Tail
The Resulting [
TupleList
], of an [Prepend::prepend()
] call,
including the prepended entry.