bacnet_encoding/lib.rs
1//! BACnet ASN.1/BER encoding and APDU/NPDU codecs per ASHRAE 135-2020.
2//!
3//! This crate provides the wire-format encoding and decoding for BACnet:
4//! - ASN.1 tag encode/decode (Clause 20.2.1)
5//! - Application-tagged primitive codecs (Clause 20.2)
6//! - APDU encode/decode (Clause 20.1)
7//! - NPDU encode/decode (Clause 6)
8
9pub mod apdu;
10pub mod npdu;
11pub mod primitives;
12pub mod segmentation;
13pub mod tags;