Returns the list of types exported by this module.
| 137 | |
| 138 | /// Returns the list of types exported by this module. |
| 139 | ExportType::List exports() const { |
| 140 | ExportType::List list; |
| 141 | wasmtime_module_exports(ptr.get(), &list.list); |
| 142 | return list; |
| 143 | } |
| 144 | |
| 145 | #ifdef WASMTIME_FEATURE_COMPILER |
| 146 | /** |