1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/// Configuration used to create an integer variable in the namespace.
///
/// # Example
/// ```rust
/// use lirays::IntegerVar;
///
/// let var = IntegerVar {
/// name: "motor_rpm".into(),
/// unit: Some("rpm".into()),
/// min: Some(0.0),
/// max: Some(3600.0),
/// };
/// assert_eq!(var.name, "motor_rpm");
/// ```
/// Configuration used to create a float variable in the namespace.
///
/// # Example
/// ```rust
/// use lirays::FloatVar;
///
/// let var = FloatVar {
/// name: "tank_level".into(),
/// unit: Some("%".into()),
/// min: Some(0.0),
/// max: Some(100.0),
/// };
/// assert_eq!(var.unit.as_deref(), Some("%"));
/// ```
/// Configuration used to create a text variable in the namespace.
///
/// # Example
/// ```rust
/// use lirays::TextVar;
///
/// let var = TextVar {
/// name: "mode".into(),
/// unit: None,
/// options: vec!["AUTO".into(), "MAN".into(), "OFF".into()],
/// max_len: Some(8),
/// };
/// assert_eq!(var.options.len(), 3);
/// ```
/// Configuration used to create a boolean variable in the namespace.
///
/// # Example
/// ```rust
/// use lirays::BooleanVar;
///
/// let var = BooleanVar {
/// name: "pump_enabled".into(),
/// unit: None,
/// };
/// assert_eq!(var.name, "pump_enabled");
/// ```
/// Partial metadata update payload for an existing variable.
///
/// # Example
/// ```rust
/// use lirays::VariableMetadataPatch;
///
/// let patch = VariableMetadataPatch {
/// unit: Some("psi".into()),
/// min: Some(1.0),
/// max: Some(20.0),
/// options: vec![],
/// max_len: None,
/// };
/// assert_eq!(patch.unit.as_deref(), Some("psi"));
/// ```