Return a pointer to the `index`'th table within this instance, stored in vmctx memory.
(&self, index: DefinedTableIndex)
| 461 | /// Return a pointer to the `index`'th table within this instance, stored |
| 462 | /// in vmctx memory. |
| 463 | pub fn table_ptr(&self, index: DefinedTableIndex) -> NonNull<VMTableDefinition> { |
| 464 | unsafe { self.vmctx_plus_offset_raw(self.offsets().vmctx_vmtable_definition(index)) } |
| 465 | } |
| 466 | |
| 467 | /// Get a locally defined or imported memory. |
| 468 | #[cfg(all(has_host_compiler_backend, feature = "debug-builtins"))] |
no test coverage detected