Struct wasm_smith::ConfiguredModule
source · pub struct ConfiguredModule<C> {
pub module: Module,
/* private fields */
}
Expand description
Fields§
§module: Module
The generated module, controlled by the configuration of C
in the
Arbitrary
implementation.
Trait Implementations§
source§impl<'a, C: Config + Arbitrary<'a>> Arbitrary<'a> for ConfiguredModule<C>
impl<'a, C: Config + Arbitrary<'a>> Arbitrary<'a> for ConfiguredModule<C>
source§fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read more