| 46 | } |
| 47 | |
| 48 | inline AnyRef StructRef::to_anyref() const { |
| 49 | wasmtime_anyref_t out; |
| 50 | wasmtime_structref_to_anyref(&raw, &out); |
| 51 | return AnyRef(out); |
| 52 | } |
| 53 | |
| 54 | inline EqRef StructRef::to_eqref() const { |
| 55 | wasmtime_eqref_t out; |
nothing calls this directly
no test coverage detected