(c: &mut wasm_config_t, enable: bool)
| 63 | |
| 64 | #[unsafe(no_mangle)] |
| 65 | pub extern "C" fn wasmtime_config_debug_info_set(c: &mut wasm_config_t, enable: bool) { |
| 66 | c.config.debug_info(enable); |
| 67 | } |
| 68 | |
| 69 | #[unsafe(no_mangle)] |
| 70 | pub extern "C" fn wasmtime_config_consume_fuel_set(c: &mut wasm_config_t, enable: bool) { |
no test coverage detected