fuzzcheck 0.13.0

A modular, structure-aware, and feedback-driven fuzzing engine for Rust functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fuzzcheck_mutators_derive::make_mutator;
extern crate self as fuzzcheck;

make_mutator! {
    name: OptionMutator,
    default: true,
    type: pub enum Option<T> {
        Some(T),
        None,
    }
}