Skip to main content

vsdb_core/basic/
mod.rs

1//!
2//! # Basic Unversioned Data Structures
3//!
4//! This module provides fundamental, unversioned data structures that serve as
5//! the building blocks for more complex, versioned structures in the VSDB framework.
6//! These structures are designed for direct, high-performance access to the
7//! underlying key-value store without versioning overhead.
8//!
9
10/// A module for the raw, unversioned map implementation.
11pub mod mapx_raw;