From 817d72a7b7dc8dc8b4eda03347190917d92af982 Mon Sep 17 00:00:00 2001 From: theduke Date: Fri, 21 May 2021 15:54:47 +0000 Subject: [PATCH] Implement std::fmt::Debug for InterruptHandle (#2915) --- crates/wasmtime/src/store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/wasmtime/src/store.rs b/crates/wasmtime/src/store.rs index c3737b3bff..4c6eb299dc 100644 --- a/crates/wasmtime/src/store.rs +++ b/crates/wasmtime/src/store.rs @@ -942,6 +942,7 @@ impl wasmtime_runtime::ModuleInfoLookup for StoreInner { /// particular `Store`. /// /// This structure is created by the [`Store::interrupt_handle`] method. +#[derive(Debug)] pub struct InterruptHandle { interrupts: Arc, }