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

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

/// Information about a multiplexed message.
#[derive(Debug)]
pub(crate) struct MultiplexInfo {
    /// Index of the multiplexor switch signal in the message
    pub(crate) switch_index: usize,
    /// All mux values used by signals in this message
    pub(crate) mux_values: BTreeSet<u64>,
}