aboutsummaryrefslogtreecommitdiff
path: root/database/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'database/src/lib.rs')
-rw-r--r--database/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/src/lib.rs b/database/src/lib.rs
index b84ddc9..32df667 100644
--- a/database/src/lib.rs
+++ b/database/src/lib.rs
@@ -480,7 +480,7 @@ impl bincode::enc::write::Writer for HashWriter {
#[cfg(not(feature = "db_json"))]
pub struct Ser<T>(pub T);
#[cfg(not(feature = "db_json"))]
-impl<T: Encode + Decode + std::fmt::Debug> redb::Value for Ser<T> {
+impl<T: Encode + Decode<()> + std::fmt::Debug> redb::Value for Ser<T> {
type SelfType<'a>
= Ser<T>
where