From 48a46affc6267ba30c5d83e96824deea22d8eab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20C=C3=A9spedes=20Tab=C3=A1rez?= <1295883+dertin@users.noreply.github.com> Date: Sat, 22 Jul 2023 03:05:36 -0300 Subject: [PATCH] impl Debug for Environment --- odbc-api/src/environment.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/odbc-api/src/environment.rs b/odbc-api/src/environment.rs index ff6fa9a5..001f5277 100644 --- a/odbc-api/src/environment.rs +++ b/odbc-api/src/environment.rs @@ -30,6 +30,7 @@ const ODBC_API_VERSION: AttrOdbcVersion = AttrOdbcVersion::Odbc3; /// /// Creating the environment is the first applications do, then interacting with an ODBC driver /// manager. There must only be one environment in the entire process. +#[derive(Debug)] pub struct Environment { environment: handles::Environment, /// ODBC environments use interior mutability to maintain iterator state then iterating over