impl Debug for Connection

This commit is contained in:
CM-IV
2025-06-22 11:41:07 -05:00
parent b07e95b892
commit 3bb0374401

View File

@@ -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<Mutex<limbo_core::Statement>>,
}