sozu_command_lib/buffer/mod.rs
1//! Channel-side ring buffers.
2//!
3//! Two flavours: `fixed` is a fixed-capacity ring used when the maximum
4//! payload size is known up-front; `growable` doubles its backing
5//! `Vec<u8>` until it hits a configured cap. Both flavours implement the
6//! same shift/insert/replace operations with overlapping-safe moves and
7//! bounds checked against `self.capacity()`.
8
9pub mod fixed;
10pub mod growable;