dbc-rs 0.4.2

Database CAN (DBC) parsing and editing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Language modules - split by feature flags
// no_std constants are always available
mod en_no_std;

#[cfg(feature = "std")]
mod en_std;

// Re-export constants based on feature flags
// no_std constants are always available
pub use en_no_std::*;

// std constants are only available with std feature
#[cfg(feature = "std")]
pub use en_std::*;