Trait Mutator

Source
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) { ... }
}

Required Methods§

Source

fn name(&self) -> &'static str

Source

fn mutation_count(&self, func: &Function) -> usize

Source

fn mutate( &mut self, func: Function, ) -> Option<(Function, String, ProgressStatus)>

Provided Methods§

Source

fn did_crash(&mut self)

Gets called when the returned mutated function kept on causing the crash. This can be used to update position of the next item to look at. Does nothing by default.

Implementors§