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>, }