dbc_codegen2/ir/
message_layout.rs1use crate::ir::SignalLayoutIdx;
2
3#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
4pub struct MessageLayoutIdx(pub usize);
5
6#[derive(Debug, Clone, PartialEq, Eq, Hash)]
7pub struct MessageLayout {
8 pub signal_layouts: Vec<SignalLayoutIdx>,
9}