1//! Segmented journals with section-based storage.
2//!
3//! This module provides journal implementations that organize data into sections,
4//! where each section is stored in a separate blob.
56pub mod fixed;
7pub mod glob;
8mod manager;
9pub mod oversized;
10pub mod variable;