Finish execution of the debuggee before returning.
(&mut self)
| 34 | impl 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 | |
| 44 | impl WasmValue { |