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
//! [`SignalValue`].

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

/// A timestamped signal value.
#[derive(Debug, Clone)]
pub struct SignalValue {
    /// Timestamp in microseconds
    pub timestamp_us: u64,
    /// Physical value after DBC conversion
    pub value: f64,
    /// Raw integer value before conversion
    pub raw_value: i64,
}