]> git.proxmox.com Git - rustc.git/blobdiff - library/proc_macro/src/bridge/mod.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / library / proc_macro / src / bridge / mod.rs
index 324be9f47010882d3ae900e6a0ad55b5e2e92444..c898d483a8ba2e84ccea7ab324796eb49c11d425 100644 (file)
@@ -220,6 +220,9 @@ pub struct Bridge<'a> {
 
     /// Server-side function that the client uses to make requests.
     dispatch: closure::Closure<'a, Buffer<u8>, Buffer<u8>>,
+
+    /// If 'true', always invoke the default panic hook
+    force_show_panics: bool,
 }
 
 impl<'a> !Sync for Bridge<'a> {}