copybook_codec/record.rs
1// SPDX-License-Identifier: AGPL-3.0-or-later
2//! Record framing facade.
3//!
4//! `copybook-codec` keeps this module as a stable compatibility surface while
5//! delegating fixed-vs-RDW dispatch and framing primitives to the dedicated
6//! `copybook-record-io` microcrate.
7
8pub use copybook_record_io::{
9 FixedRecordReader, FixedRecordWriter, RDWRecord, RDWRecordReader, RDWRecordWriter, read_record,
10 write_record,
11};