Return the indexed `VMMemoryImport`.
(&self, index: MemoryIndex)
| 428 | |
| 429 | /// Return the indexed `VMMemoryImport`. |
| 430 | fn imported_memory(&self, index: MemoryIndex) -> &VMMemoryImport { |
| 431 | unsafe { self.vmctx_plus_offset(self.offsets().vmctx_vmmemory_import(index)) } |
| 432 | } |
| 433 | |
| 434 | /// Return the indexed `VMGlobalImport`. |
| 435 | fn imported_global(&self, index: GlobalIndex) -> &VMGlobalImport { |
no test coverage detected