pub type VmDebuggerHandle<SE> = Arc<RwLock<dyn VmDebugger<SE> + Send + Sync>>;Expand description
A shared debugger, as a scope holds it.
Every callback takes the lock with try_write, so a debugger that is busy
elsewhere is skipped rather than waited for.
Aliased Typeยง
pub struct VmDebuggerHandle<SE> { /* private fields */ }