Skip to main content

reifydb_core/util/encoding/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! Generic byte-layout helpers shared by the storage tier, CDC, replication, and the diagnostic formatter.
5//!
6//! `binary` provides plain serialise and deserialise routines, `format` exposes a pluggable `Formatter` trait used by
7//! tools and tests to render keys and values in a human-readable form, and `keycode` is the order-preserving codec that
8//! turns typed keys into the bytes that go on disk.
9
10pub mod binary;
11pub mod format;
12pub mod keycode;