//! Storage primitives.
//!
//! - [`CacheEntry`] is the on-disk record.
//! - [`mmap`] provides aligned memory-mapped IO helpers used by caches.
/// Storage error types.
/// Memory-mapped IO helpers.
/// NVMe-backed storage implementation.
/// Storage writer trait.
pub use StorageError;
pub use ArchivedCacheEntry;
pub use CacheEntry;
pub use StorageWriter;