diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-06 23:50:51 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-06 23:50:51 +0200 |
commit | 356b3b8eebf22083c7d9655bb43e141dd0df732c (patch) | |
tree | 5573ff4290a8d36bb1606562615c3438e3449915 /database | |
parent | d205173acdd721d581a88fe4788d1ec64b9c2055 (diff) | |
download | jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar.bz2 jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar.zst |
misc changes for current rust nightly
Diffstat (limited to 'database')
-rw-r--r-- | database/src/lib.rs | 2 |
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 |