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
16
17
//! [`BusLoggerStats`].

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

/// Statistics for a bus logger.
#[derive(Debug, Clone, Default)]
pub struct BusLoggerStats {
    /// Total number of frames logged.
    pub total_frames: usize,
    /// Number of transmitted frames.
    pub tx_frames: usize,
    /// Number of received frames.
    pub rx_frames: usize,
    /// Number of error frames.
    pub error_frames: usize,
}