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
sourceimpl<'a, C: Config + Arbitrary<'a>> Arbitrary<'a> for ConfiguredModule<C>
impl<'a, C: Config + Arbitrary<'a>> Arbitrary<'a> for ConfiguredModule<C>
sourcefn 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 more
sourcefn 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
Auto Trait Implementations
impl<C> !RefUnwindSafe for ConfiguredModule<C>
impl<C> !Send for ConfiguredModule<C>
impl<C> !Sync for ConfiguredModule<C>
impl<C> Unpin for ConfiguredModule<C> where
C: Unpin,
impl<C> !UnwindSafe for ConfiguredModule<C>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more