1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Binary encoding support for SCTE-35 messages.
//!
//! This module provides functionality to encode SCTE-35 structures into their binary
//! wire format, complementing the parsing functionality with serialization capabilities.
/// Error types for encoding operations.
/// Bit-level writer for encoding binary data.
/// Trait definitions for encodable types.
// Implementation modules
// Re-export commonly used types
pub use ;
pub use Encodable;
pub use BitWriter;
// Re-export feature-gated traits
pub use CrcEncodable;
pub use Base64Encodable;