Returns the list of types imported by this module.
| 130 | |
| 131 | /// Returns the list of types imported by this module. |
| 132 | ImportType::List imports() const { |
| 133 | ImportType::List list; |
| 134 | wasmtime_module_imports(ptr.get(), &list.list); |
| 135 | return list; |
| 136 | } |
| 137 | |
| 138 | /// Returns the list of types exported by this module. |
| 139 | ExportType::List exports() const { |