Struct puffin::fuzzer::libafl_setup::MutationStageConfig
source · pub struct MutationStageConfig {
pub max_iterations_per_stage: u64,
pub max_mutations_per_iteration: u64,
}
Fields§
§max_iterations_per_stage: u64
How many iterations each stage gets, as an upper bound It may randomly continue earlier. Each iteration works on a different Input from the corpus
max_mutations_per_iteration: u64
Trait Implementations§
source§impl Clone for MutationStageConfig
impl Clone for MutationStageConfig
source§fn clone(&self) -> MutationStageConfig
fn clone(&self) -> MutationStageConfig
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 moresource§impl Debug for MutationStageConfig
impl Debug for MutationStageConfig
source§impl Default for MutationStageConfig
impl Default for MutationStageConfig
impl Copy for MutationStageConfig
Auto Trait Implementations§
impl Freeze for MutationStageConfig
impl RefUnwindSafe for MutationStageConfig
impl Send for MutationStageConfig
impl Sync for MutationStageConfig
impl Unpin for MutationStageConfig
impl UnwindSafe for MutationStageConfig
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.