Get the value of a global export.
(&self, name: &str)
| 282 | |
| 283 | /// Get the value of a global export. |
| 284 | pub fn global_get(&self, name: &str) -> Result<WasmValue> { |
| 285 | self.module().global_get(self.store, name) |
| 286 | } |
| 287 | |
| 288 | /// Get a global export. |
| 289 | pub fn global(&self, name: &str) -> Result<crate::Global> { |