//! Splice commands — ANSI/SCTE 35 2023r1 §9.7, Tables 8-13.
//!
//! One module per `splice_command_type` (§9.6.1, Table 7), each mirroring the
//! dvb-si descriptor shape: spec-cited doc → `COMMAND_TYPE` const → struct →
//! symmetric [`Parse`](broadcast_common::Parse)/[`Serialize`](broadcast_common::Serialize)
//! → in-module round-trip tests. [`AnyCommand`] unifies them with a raw
//! fall-through for reserved types.
pub use AnyCommand;
pub use BandwidthReservation;
pub use PrivateCommand;
pub use ;
pub use SpliceNull;
pub use ;
pub use TimeSignal;