From 3bb03744013c2469dc816aae250c427ae35aff12 Mon Sep 17 00:00:00 2001 From: CM-IV Date: Sun, 22 Jun 2025 11:41:07 -0500 Subject: [PATCH] impl Debug for Connection --- bindings/rust/src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bindings/rust/src/lib.rs b/bindings/rust/src/lib.rs index d7925a0e3..d9900a3f5 100644 --- a/bindings/rust/src/lib.rs +++ b/bindings/rust/src/lib.rs @@ -148,6 +148,12 @@ impl Connection { } } +impl Debug for Connection { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.debug_struct("Connection").finish() + } +} + pub struct Statement { inner: Arc>, }