fn name()

in propfuzz/src/traits.rs [29:41]


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

    /// Returns an optional description for this structured fuzz target.
    fn description(&self) -> Option<&'static str>;

    /// Returns the proptest config for this fuzz target.
    ///
    /// The default implementation for the `#[propfuzz]` macro uses the default `proptest` config,
    /// and sets `source_file` to the file the macro is invoked from. The config can be altered
    /// through passing arguments to `#[propfuzz]`.
    fn proptest_config(&self) -> ProptestConfig {
        ProptestConfig::default()
    }