(c: &mut wasm_config_t, enable: bool)
| 120 | |
| 121 | #[unsafe(no_mangle)] |
| 122 | pub extern "C" fn wasmtime_config_gc_support_set(c: &mut wasm_config_t, enable: bool) { |
| 123 | c.config.gc_support(enable); |
| 124 | } |
| 125 | |
| 126 | #[unsafe(no_mangle)] |
| 127 | pub extern "C" fn wasmtime_config_wasm_simd_set(c: &mut wasm_config_t, enable: bool) { |
nothing calls this directly
no test coverage detected