trait Mutator {
// Required methods
fn name(&self) -> &'static str;
fn mutation_count(&self, func: &Function) -> usize;
fn mutate(
&mut self,
func: Function,
) -> Option<(Function, String, ProgressStatus)>;
// Provided method
fn did_crash(&mut self) { ... }
}