Expand description
§vsdb_core
vsdb_core
provides the low-level building blocks for vsdb
, including storage
engine abstractions, raw data structures, and common utilities. It is not
typically used directly by end-users, but forms the foundation of the vsdb
ecosystem.
Re-exports§
pub use basic::mapx_raw::MapxRaw;
pub use common::GB;
pub use common::KB;
pub use common::MB;
pub use common::NULL;
pub use common::RawBytes;
pub use common::RawKey;
pub use common::RawValue;
pub use common::vsdb_flush;
pub use common::vsdb_get_base_dir;
pub use common::vsdb_get_custom_dir;
pub use common::vsdb_set_base_dir;
Modules§
- basic
- Contains raw, untyped data structures.
- common
- Manages storage backends, raw data types, and shared utilities.
Macros§
- parse_
int - A macro to parse a byte slice into a specified integer type.
- parse_
prefix - A macro to parse a byte slice into a
Pre
type.