diff --git a/bindings/rust/src/lib.rs b/bindings/rust/src/lib.rs index 91a1ab7d2..402ee1c19 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>, }