pub type StringMutator = impl Mutator<String>;
Expand description

The default mutator for strings. It is not very good and will be replaced by a different one in the future.

Construct it with:

use fuzzcheck::DefaultMutator;

let m = String::default_mutator();
// or:
use fuzzcheck::mutators::string::string_mutator;

let m = string_mutator();