(
store: &mut wasmtime_store_t,
)
| 184 | |
| 185 | #[unsafe(no_mangle)] |
| 186 | pub extern "C" fn wasmtime_store_context( |
| 187 | store: &mut wasmtime_store_t, |
| 188 | ) -> WasmtimeStoreContextMut<'_> { |
| 189 | store.store.as_context_mut() |
| 190 | } |
| 191 | |
| 192 | #[unsafe(no_mangle)] |
| 193 | pub extern "C" fn wasmtime_store_limiter( |
no test coverage detected