0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-06 16:31:55 +00:00

libsql: impl debug for Connection

This commit is contained in:
Lucio Franco
2024-11-11 14:41:16 -05:00
parent e853d54300
commit accf73e728

@ -245,3 +245,9 @@ impl Connection {
self.conn.load_extension(dylib_path.as_ref(), entry_point)
}
}
impl fmt::Debug for Connection {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Connection").finish()
}
}