(
mut context: WasmtimeStoreContextMut<'_>,
)
| 251 | #[unsafe(no_mangle)] |
| 252 | #[cfg(feature = "gc")] |
| 253 | pub extern "C" fn wasmtime_context_gc( |
| 254 | mut context: WasmtimeStoreContextMut<'_>, |
| 255 | ) -> Option<Box<wasmtime_error_t>> { |
| 256 | crate::handle_result(context.gc(None), |()| {}) |
| 257 | } |
| 258 | |
| 259 | #[unsafe(no_mangle)] |
| 260 | pub extern "C" fn wasmtime_context_set_fuel( |
no test coverage detected