rustbac_core/encoding/mod.rs
1/// Encode/decode functions for BACnet primitive and application data types.
2pub mod primitives;
3/// Zero-copy byte reader for decoding BACnet frames.
4pub mod reader;
5/// BACnet tag system (application, context, opening/closing).
6pub mod tag;
7/// Byte writer for encoding BACnet frames into a caller-owned buffer.
8pub mod writer;