MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / finish

Method finish

crates/debugger/src/host/api.rs:36–41  ·  view source on GitHub ↗

Finish execution of the debuggee before returning.

(&mut self)

Source from the content-addressed store, hash-verified

34impl Debuggee {
35 /// Finish execution of the debuggee before returning.
36 pub async fn finish(&mut self) -> Result<()> {
37 if let Some(inner) = self.inner.as_mut() {
38 inner.finish().await?;
39 }
40 Ok(())
41 }
42}
43
44impl WasmValue {

Callers

nothing calls this directly

Calls 7

OkFunction · 0.85
result_to_eventFunction · 0.85
as_mutMethod · 0.45
deleteMethod · 0.45
readyMethod · 0.45
get_mutMethod · 0.45
unwrapMethod · 0.45

Tested by

no test coverage detected