From 163cfb0328230c702402c170ace351cdbd796e45 Mon Sep 17 00:00:00 2001 From: KOBAYASHI Kazuhiro Date: Mon, 15 Jan 2024 11:58:30 +0900 Subject: [PATCH] tlmcmddb: Add comments for display info --- tlmcmddb/src/tlm.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tlmcmddb/src/tlm.rs b/tlmcmddb/src/tlm.rs index 7a10c0c..43edc41 100644 --- a/tlmcmddb/src/tlm.rs +++ b/tlmcmddb/src/tlm.rs @@ -202,10 +202,15 @@ impl VariableType { } } +/// GS SW などでテレメトリを表示するときの情報 +/// 各フィールドの具体的な解釈と利用方法は GS SW に依存する #[derive(Debug, Clone, PartialEq, Serialize, Deserialize, Default)] pub struct DisplayInfo { + /// 表示名 pub label: String, + /// 単位 pub unit: String, + /// フォーマットの指定 pub format: String, }