Store is a general group of wasm instances, and many objects must all be created with and reference the same `Store`
| 14 | // Store is a general group of wasm instances, and many objects |
| 15 | // must all be created with and reference the same `Store` |
| 16 | type Store struct { |
| 17 | _ptr *C.wasmtime_store_t |
| 18 | |
| 19 | // The `Engine` that this store uses for compilation and environment |
| 20 | // settings. |
| 21 | Engine *Engine |
| 22 | } |
| 23 | |
| 24 | // Storelike represents types that can be used to contextually reference a |
| 25 | // `Store`. |
nothing calls this directly
no outgoing calls
no test coverage detected