Add linear view into a storage (#571)

This commit is contained in:
Julien Cretin
2022-12-07 13:00:41 +01:00
committed by GitHub
parent 0d0460f016
commit f6e9e00b87
3 changed files with 393 additions and 13 deletions

View File

@@ -370,6 +370,7 @@ mod driver;
mod file;
mod format;
pub mod fragment;
mod linear;
#[cfg(feature = "std")]
mod model;
mod storage;
@@ -385,6 +386,7 @@ pub use self::driver::{
};
#[cfg(feature = "std")]
pub use self::file::{FileOptions, FileStorage};
pub use self::linear::Linear;
#[cfg(feature = "std")]
pub use self::model::{StoreModel, StoreOperation};
pub use self::storage::{Storage, StorageError, StorageIndex, StorageResult};