diff --git a/bin/host/src/kv/mem.rs b/bin/host/src/kv/mem.rs index 59542be11..7a1f45548 100644 --- a/bin/host/src/kv/mem.rs +++ b/bin/host/src/kv/mem.rs @@ -9,7 +9,8 @@ use std::collections::HashMap; /// development purposes. #[derive(Default, Clone, Debug, Eq, PartialEq)] pub struct MemoryKeyValueStore { - store: HashMap>, + /// The underlying store. + pub store: HashMap>, } impl MemoryKeyValueStore {