Searched refs:ExceptionOps (Results 1 – 4 of 4) sorted by relevance
8 use wasmtime_fuzzing::generators::ExceptionOps;12 let Ok((seed, ops)) = postcard::from_bytes::<(u64, ExceptionOps)>(data) else {37 let mut tuple: (u64, ExceptionOps) = from_bytes(&data[..size]).ok().unwrap_or_default();
115 pub struct ExceptionOps { struct121 impl ExceptionOps { argument592 impl Generate<ExceptionOps> for ExceptionOpsMutator {593 fn generate(&mut self, _ctx: &mut Context) -> MutResult<ExceptionOps> { in generate() argument594 let mut ops = ExceptionOps::default(); in generate()612 .run(|ops: &ExceptionOps| { in always_produces_valid_wasm()
31 pub use exception_ops::ExceptionOps;
26 use crate::generators::ExceptionOps;1027 pub fn exception_ops(mut fuzz_config: generators::Config, mut ops: ExceptionOps) -> Result<()> { in exception_ops()