1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, Serialize, Deserialize)]
4pub struct BusConfig {
5 pub bus: String,
6 pub adapter: String,
7 pub dbc_path: String,
8 pub bitrate: u32,
9 pub bitrate_data: u32,
10 pub fd_capable: bool,
11}