Expand description
Wasmtime debugger functionality.
This crate builds on top of the core Wasmtime crate’s guest-debugger APIs to present an environment where a debugger runs as a “co-running process” and sees the debugee as a a provider of a stream of events, on which actions can be taken between each event.
In the future, this crate will also provide a WIT-level API and world in which to run debugger components.
Structs§
- Debugger
- A
Debuggerwraps up state associated with debugging the code running in a singleStore.
Enums§
- Debug
RunResult - The result of one call to
Debugger::run().