mdf4-rs 0.6.0

mdf4-rs is a Rust library for working with Measurement Data Format (ASAM MDF4) files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! [`AsamCanGroup`].

#[allow(unused_imports)]
use super::*;

/// Information about an ASAM CAN_DataFrame channel group.
#[derive(Debug)]
pub(crate) struct AsamCanGroup {
    /// Index in the MdfIndex channel_groups
    pub(crate) group_index: usize,
    /// Timestamp channel index
    pub(crate) timestamp_channel: usize,
    /// CAN_DataFrame channel index (ByteArray)
    pub(crate) dataframe_channel: usize,
}