Returns the size, in WebAssembly pages, of this memory.
| 49 | |
| 50 | /// Returns the size, in WebAssembly pages, of this memory. |
| 51 | uint64_t size(Store::Context cx) const { |
| 52 | return wasmtime_memory_size(cx.ptr, &memory); |
| 53 | } |
| 54 | |
| 55 | /// Returns a `span` of where this memory is located in the host. |
| 56 | /// |
nothing calls this directly
no test coverage detected