tlmcmddb 2.6.1

C2A TlmCmd DB data model
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use serde::{Deserialize, Serialize};

pub mod cmd;
pub mod tlm;

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Database {
    pub components: Vec<Component>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Component {
    pub name: String,
    pub tlm: tlm::Database,
    pub cmd: cmd::Database,
}