lib.rs 279 B

12345678910
  1. //! Storage abstraction for the ledger.
  2. //!
  3. //! Provides the [`Store`](store::Store) trait (composed of seven sub-traits),
  4. //! an in-memory implementation, and a conformance test suite macro.
  5. pub mod error;
  6. pub mod events;
  7. pub mod mem_store;
  8. pub mod store;
  9. pub mod store_tests;