(e: &wasm_extern_t)
| 36 | |
| 37 | #[unsafe(no_mangle)] |
| 38 | pub extern "C" fn wasm_extern_as_func(e: &wasm_extern_t) -> Option<&wasm_func_t> { |
| 39 | wasm_func_t::try_from(e) |
| 40 | } |
| 41 | |
| 42 | #[unsafe(no_mangle)] |
| 43 | pub extern "C" fn wasm_extern_as_func_const(e: &wasm_extern_t) -> Option<&wasm_func_t> { |
no outgoing calls
no test coverage detected