backend: impl Debug for ConcreteEnv

needed for `tracing::instrument`
This commit is contained in:
hinto.janai 2024-05-17 20:34:59 -04:00
parent 112f4c18e4
commit 78f87e7b37
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 2 additions and 0 deletions

View file

@ -31,6 +31,7 @@ const PANIC_MSG_MISSING_TABLE: &str =
//---------------------------------------------------------------------------------------------------- ConcreteEnv
/// A strongly typed, concrete database environment, backed by `heed`.
#[derive(Debug)]
pub struct ConcreteEnv {
/// The actual database environment.
///

View file

@ -14,6 +14,7 @@ use crate::{
//---------------------------------------------------------------------------------------------------- ConcreteEnv
/// A strongly typed, concrete database environment, backed by `redb`.
#[derive(Debug)]
pub struct ConcreteEnv {
/// The actual database environment.
env: redb::Database,