Add model for new store

This commit is contained in:
Julien Cretin
2020-10-27 14:17:50 +01:00
parent 55ceec2a21
commit e7303ed7c6
3 changed files with 222 additions and 1 deletions

View File

@@ -352,9 +352,13 @@ extern crate alloc;
mod bitfield;
mod buffer;
mod format;
#[cfg(feature = "std")]
mod model;
mod storage;
mod store;
pub use self::buffer::{BufferCorruptFunction, BufferOptions, BufferStorage};
#[cfg(feature = "std")]
pub use self::model::{StoreModel, StoreOperation};
pub use self::storage::{Storage, StorageError, StorageIndex, StorageResult};
pub use self::store::{StoreError, StoreResult};
pub use self::store::{StoreError, StoreRatio, StoreResult, StoreUpdate};