Skip to main content

reifydb_codec/row/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! The row envelope family types: the opaque `EncodedBytes` a flat store hands back, the shape
5//! machinery that gives it a typed view, and one submodule per storage family that owns a header
6//! layout of its own. A family's carve lands here as its own submodule.
7
8pub mod bytes;
9pub mod catalog;
10pub mod le;
11pub mod operator;
12pub mod pod;
13pub mod queue;
14pub mod ringbuffer;
15pub mod series;
16pub mod shape;
17pub mod table;