aboutsummaryrefslogtreecommitdiff
path: root/src/storage/in_memory.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-11-21 09:56:31 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-11-21 09:56:31 +0100
commit6e8b2cfc9ff1abf2b4844884d9ebd807d37bd76e (patch)
tree2eb6dc92646f97fe4452485f4dbeac588c80e5a4 /src/storage/in_memory.rs
parentbd6c3464e609dc76e119457ea583af0f08eeabb4 (diff)
downloadaerogramme-6e8b2cfc9ff1abf2b4844884d9ebd807d37bd76e.tar.gz
aerogramme-6e8b2cfc9ff1abf2b4844884d9ebd807d37bd76e.zip
rewrite CryptoKeys with Storage abstraction
Diffstat (limited to 'src/storage/in_memory.rs')
-rw-r--r--src/storage/in_memory.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/storage/in_memory.rs b/src/storage/in_memory.rs
index cde2335..49169d7 100644
--- a/src/storage/in_memory.rs
+++ b/src/storage/in_memory.rs
@@ -90,4 +90,8 @@ impl IRowValue for MemValue {
}
}
-
+impl std::fmt::Debug for MemValue {
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ unimplemented!();
+ }
+}