open_dis_rust/common/
dis_error.rs

1//     open-dis-rust - Rust implementation of the IEEE 1278.1-2012 Distributed Interactive
2//                     Simulation (DIS) application protocol
3//     Copyright (C) 2023 Cameron Howell
4//
5//     Licensed under the BSD 2-Clause License
6
7#[derive(Debug)]
8/// Enumeration for describing types of errors that may occur related to PDUs
9pub enum DISError {
10    InvalidDISHeader,
11}