(u: &mut Unstructured<'a>)
| 564 | |
| 565 | impl<'a> Arbitrary<'a> for Config { |
| 566 | fn arbitrary(u: &mut Unstructured<'a>) -> arbitrary::Result<Self> { |
| 567 | let mut config = Self { |
| 568 | wasmtime: u.arbitrary()?, |
| 569 | module_config: u.arbitrary()?, |
| 570 | }; |
| 571 | |
| 572 | config |
| 573 | .wasmtime |
| 574 | .update_module_config(&mut config.module_config, u)?; |
| 575 | |
| 576 | Ok(config) |
| 577 | } |
| 578 | } |
| 579 | |
| 580 | /// Configuration related to `wasmtime::Config` and the various settings which |
no test coverage detected