reifydb_codec/frame/encoding/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Per-column wire encodings: plain, dictionary, run-length, and delta. Each encoding has a stable tag in the RBCF
5//! header so the decoder can pick the right reader without out-of-band coordination. New encodings need a new tag
6//! and a coordinated update on every peer that might receive the resulting payload.
7
8pub mod delta;
9pub mod dict;
10pub mod plain;
11pub mod rle;