pub trait FuzzDataBuilder<T>where
T: for<'a> Arbitrary<'a>,{
// Provided methods
fn pre_ixs(u: &mut Unstructured<'_>) -> Result<Vec<T>, Error> { ... }
fn ixs(u: &mut Unstructured<'_>) -> Result<Vec<T>, Error> { ... }
fn post_ixs(u: &mut Unstructured<'_>) -> Result<Vec<T>, Error> { ... }
}Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.