Add buffer storage for new store

This commit is contained in:
Julien Cretin
2020-10-23 08:13:50 +02:00
parent 18fdfc4305
commit 10ac76e58a
2 changed files with 669 additions and 0 deletions

View File

@@ -13,11 +13,14 @@
// limitations under the License.
#![cfg_attr(not(feature = "std"), no_std)]
#![feature(slice_fill)]
#[macro_use]
mod bitfield;
mod buffer;
mod storage;
mod store;
pub use self::buffer::{BufferCorruptFunction, BufferOptions, BufferStorage};
pub use self::storage::{Storage, StorageError, StorageIndex, StorageResult};
pub use self::store::{StoreError, StoreResult};