1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
// Copyright (c) 2019 E.S.R.Labs. All rights reserved. // // NOTICE: All information contained herein is, and remains // the property of E.S.R.Labs and its suppliers, if any. // The intellectual and technical concepts contained herein are // proprietary to E.S.R.Labs and its suppliers and may be covered // by German and Foreign Patents, patents in process, and are protected // by trade secret or copyright law. // Dissemination of this information or reproduction of this material // is strictly forbidden unless prior written permission is obtained // from E.S.R.Labs. //! # Autosar DLT //! //! `dlt-core` contains data structures for DLT messages and related types, //! a parser to parse binary dlt-messages and a way to create dlt messages //#![allow(dead_code)] #[macro_use] extern crate log; pub mod dlt; pub mod fibex; pub mod filtering; #[cfg(not(tarpaulin_include))] pub mod fmt; pub mod parse; #[cfg(not(tarpaulin_include))] pub mod service_id; #[cfg(not(tarpaulin_include))] pub mod statistics; #[cfg(test)] pub mod proptest_strategies; #[cfg(test)] mod tests;