(
instance_pre: &wasmtime_instance_pre_t,
)
| 176 | |
| 177 | #[unsafe(no_mangle)] |
| 178 | pub unsafe extern "C" fn wasmtime_instance_pre_module( |
| 179 | instance_pre: &wasmtime_instance_pre_t, |
| 180 | ) -> Box<wasmtime_module_t> { |
| 181 | let module = instance_pre.underlying.module().clone(); |
| 182 | Box::new(wasmtime_module_t { module }) |
| 183 | } |