(&self, store: &StoreOpaque)
| 1208 | |
| 1209 | #[inline] |
| 1210 | pub(crate) fn vm_func_ref(&self, store: &StoreOpaque) -> NonNull<VMFuncRef> { |
| 1211 | self.store.assert_belongs_to(store.id()); |
| 1212 | self.unsafe_func_ref.as_non_null() |
| 1213 | } |
| 1214 | |
| 1215 | pub(crate) fn vmimport(&self, store: &StoreOpaque) -> VMFunctionImport { |
| 1216 | // Safety: it should be fine to dereference the funcref pointer while we |
no test coverage detected