pagedb 0.1.0-beta.6

Encrypted, portable, embedded page store with B+ tree and segment-file surfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! B+ tree tests that exercise the physical node format and the walks over it.
//! They live here rather than in `tests/` because the node/leaf/internal codecs
//! are crate-internal — an embedder never sees a slot array or a page id.
#![allow(clippy::pedantic)]

mod basic;
mod generated_nodes;
mod generated_overflow_chains;
mod generated_structural_walks;
mod overflow_walk_offset;
mod tree_ops;