rollblock 0.4.1

A super-fast, block-oriented and rollbackable key-value store.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Public API surface for Rollblock consumers.
//!
//! This module groups lightweight types, error definitions, and facade traits so
//! downstream crates can interact with the store without pulling in the heavy
//! runtime/state/storage implementation details.

pub mod error;
pub mod facade;
pub mod types;

pub mod prelude {
    pub use super::error::{StoreError, StoreResult};
    pub use super::facade::{BlockStoreFacade, SimpleStoreFacade, StoreConfig, StoreFacade};
    pub use super::types::*;
}