Set the indexed memory to `VMMemoryDefinition`.
(&self, index: DefinedMemoryIndex, mem: VMMemoryDefinition)
| 484 | |
| 485 | /// Set the indexed memory to `VMMemoryDefinition`. |
| 486 | fn set_memory(&self, index: DefinedMemoryIndex, mem: VMMemoryDefinition) { |
| 487 | unsafe { |
| 488 | self.memory_ptr(index).write(mem); |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | /// Return the address of the specified memory at `index` within this vmctx. |
| 493 | /// |
no test coverage detected