fast_dlt/
lib.rs

1// Release R22-11 Breaks backward-compatibility, TODO use #[cfg(feature = "r22-11")] to have both versions at the same time
2// https://www.autosar.org/fileadmin/standards/foundation/22-11/AUTOSAR_PRS_LogAndTraceProtocol.pdf
3
4// Currently targeting release R20-11
5// https://www.autosar.org/fileadmin/standards/foundation/20-11/AUTOSAR_PRS_LogAndTraceProtocol.pdf
6
7#![warn(missing_debug_implementations, rust_2018_idioms)]
8pub mod error;
9pub mod file;
10pub mod header;
11pub mod message;
12pub mod payload;
13
14// TODO: use Cow<'a, str> everywhere?