pub trait HasObjective {
type Objective;
// Required methods
fn objective(&self) -> &Self::Objective;
fn objective_mut(&mut self) -> &mut Self::Objective;
fn share_objectives(&self) -> bool;
fn set_share_objectives(&mut self, share_objectives: bool);
}
Expand description
Holds an objective feedback
Required Associated Types§
Required Methods§
Sourcefn objective_mut(&mut self) -> &mut Self::Objective
fn objective_mut(&mut self) -> &mut Self::Objective
The objective feedback (mutable)
Whether to share objective testcases among fuzzing nodes
Sets whether to share objectives among nodes