mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Clean up ObjectStore's Debug impl
This commit is contained in:
parent
366db1e1fe
commit
76e3d37009
1 changed files with 11 additions and 1 deletions
|
@ -39,7 +39,7 @@ pub(crate) enum ObjectError {
|
||||||
Anyhow(#[from] anyhow::Error),
|
Anyhow(#[from] anyhow::Error),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Clone)]
|
||||||
pub(crate) struct ObjectStore {
|
pub(crate) struct ObjectStore {
|
||||||
path_gen: Generator,
|
path_gen: Generator,
|
||||||
settings_tree: sled::Tree,
|
settings_tree: sled::Tree,
|
||||||
|
@ -230,3 +230,13 @@ where
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl std::fmt::Debug for ObjectStore {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
f.debug_struct("ObjectStore")
|
||||||
|
.field("path_gen", &self.path_gen)
|
||||||
|
.field("bucket", &self.bucket.name)
|
||||||
|
.field("region", &self.bucket.region)
|
||||||
|
.finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue