willow_data_model/storage/
mod.rs

1//! Storage for Willow entries.
2//!
3//! This module provides traits for abstracting over concrete storage backends for [Willow stores](https://willowprotocol.org/specs/data-model/index.html#store), and a non-persistent, in-memory implementation of these traits — the [`MemoryStore`].
4
5mod store;
6pub use store::*;
7
8#[cfg(feature = "std")]
9mod memory_store;
10#[cfg(feature = "std")]
11pub use memory_store::*;