Returns the original Wasm bytecode for this module, if it is available. Bytecode is only retained when the [`Engine`] was configured with `guest-debug` support enabled (see [`Config::guest_debug`]). Returns `None` when the module was compiled without that option. [`Config::guest_debug`]: crate::Config::guest_debug
(&self)
| 698 | /// |
| 699 | /// [`Config::guest_debug`]: crate::Config::guest_debug |
| 700 | pub fn debug_bytecode(&self) -> Option<&[u8]> { |
| 701 | self.compiled_module().bytecode() |
| 702 | } |
| 703 | |
| 704 | /// Returns the list of imports that this [`Module`] has and must be |
| 705 | /// satisfied. |
no test coverage detected