Get a vector of all Modules held in the Store, for debug purposes. Guest debugging must be enabled for this accessor to return any modules. If it is not, an empty vector is returned.
(&mut self)
| 67 | /// Guest debugging must be enabled for this accessor to return |
| 68 | /// any modules. If it is not, an empty vector is returned. |
| 69 | pub fn debug_all_modules(&mut self) -> Vec<Module> { |
| 70 | self.as_store_opaque().debug_all_modules() |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | impl<'a, T> StoreContextMut<'a, T> { |
no test coverage detected