open-dis-rust 0.4.2

A Rust implementation of the IEEE 1278.1-2012 DIS Standard.
Documentation
//     open-dis-rust - Rust implementation of the IEEE 1278.1-2012 Distributed Interactive
//                     Simulation (DIS) application protocol
//     Copyright (C) 2025 Cameron Howell
//
//     Licensed under the BSD 2-Clause License

//! All commonly used non-PDU data types

pub mod constants;
pub mod data_types;
pub mod dis_error;
pub mod enums;
pub mod generic_header;
pub mod live_entity_pdu_header;
pub mod pdu;
pub mod pdu_body;
pub mod pdu_header;
pub mod serialized_length;

pub use dis_error::DISError;
pub use generic_header::GenericHeader;
pub use live_entity_pdu_header::LiveEntityPduHeader;
pub use pdu::Pdu;
pub use pdu_body::PduBody;
pub use pdu_header::PduHeader;
pub use serialized_length::SerializedLength;