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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
use crate::errors::*;
use crate::types::*;
use uuid::Uuid;

use std::fmt::Debug;

/// Describes a statistical graph
pub trait TDStatisticalGraph: Debug + RObject {}

/// Describes a statistical graph
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(tag = "@type")]
pub enum StatisticalGraph {
    #[doc(hidden)]
    _Default,
    /// Loads an asynchronous or a zoomed in statistical graph
    #[serde(rename(serialize = "getStatisticalGraph", deserialize = "getStatisticalGraph"))]
    GetStatisticalGraph(GetStatisticalGraph),
    /// The graph data to be asynchronously loaded through getStatisticalGraph
    #[serde(rename(
        serialize = "statisticalGraphAsync",
        deserialize = "statisticalGraphAsync"
    ))]
    Async(StatisticalGraphAsync),
    /// A graph data
    #[serde(rename(
        serialize = "statisticalGraphData",
        deserialize = "statisticalGraphData"
    ))]
    Data(StatisticalGraphData),
    /// An error message to be shown to the user instead of the graph
    #[serde(rename(
        serialize = "statisticalGraphError",
        deserialize = "statisticalGraphError"
    ))]
    Error(StatisticalGraphError),
}

impl Default for StatisticalGraph {
    fn default() -> Self {
        StatisticalGraph::_Default
    }
}

impl RObject for StatisticalGraph {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        match self {
            StatisticalGraph::GetStatisticalGraph(t) => t.extra(),
            StatisticalGraph::Async(t) => t.extra(),
            StatisticalGraph::Data(t) => t.extra(),
            StatisticalGraph::Error(t) => t.extra(),

            _ => None,
        }
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        match self {
            StatisticalGraph::GetStatisticalGraph(t) => t.client_id(),
            StatisticalGraph::Async(t) => t.client_id(),
            StatisticalGraph::Data(t) => t.client_id(),
            StatisticalGraph::Error(t) => t.client_id(),

            _ => None,
        }
    }
}

impl StatisticalGraph {
    pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    #[doc(hidden)]
    pub fn _is_default(&self) -> bool {
        matches!(self, StatisticalGraph::_Default)
    }
}

impl AsRef<StatisticalGraph> for StatisticalGraph {
    fn as_ref(&self) -> &StatisticalGraph {
        self
    }
}

/// The graph data to be asynchronously loaded through getStatisticalGraph
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct StatisticalGraphAsync {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
    /// The token to use for data loading
    token: String,
}

impl RObject for StatisticalGraphAsync {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDStatisticalGraph for StatisticalGraphAsync {}

impl StatisticalGraphAsync {
    pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> RTDStatisticalGraphAsyncBuilder {
        let mut inner = StatisticalGraphAsync::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        RTDStatisticalGraphAsyncBuilder { inner }
    }

    pub fn token(&self) -> &String {
        &self.token
    }
}

#[doc(hidden)]
pub struct RTDStatisticalGraphAsyncBuilder {
    inner: StatisticalGraphAsync,
}

impl RTDStatisticalGraphAsyncBuilder {
    pub fn build(&self) -> StatisticalGraphAsync {
        self.inner.clone()
    }

    pub fn token<T: AsRef<str>>(&mut self, token: T) -> &mut Self {
        self.inner.token = token.as_ref().to_string();
        self
    }
}

impl AsRef<StatisticalGraphAsync> for StatisticalGraphAsync {
    fn as_ref(&self) -> &StatisticalGraphAsync {
        self
    }
}

impl AsRef<StatisticalGraphAsync> for RTDStatisticalGraphAsyncBuilder {
    fn as_ref(&self) -> &StatisticalGraphAsync {
        &self.inner
    }
}

/// A graph data
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct StatisticalGraphData {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
    /// Graph data in JSON format
    json_data: String,
    /// If non-empty, a token which can be used to receive a zoomed in graph
    zoom_token: String,
}

impl RObject for StatisticalGraphData {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDStatisticalGraph for StatisticalGraphData {}

impl StatisticalGraphData {
    pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> RTDStatisticalGraphDataBuilder {
        let mut inner = StatisticalGraphData::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        RTDStatisticalGraphDataBuilder { inner }
    }

    pub fn json_data(&self) -> &String {
        &self.json_data
    }

    pub fn zoom_token(&self) -> &String {
        &self.zoom_token
    }
}

#[doc(hidden)]
pub struct RTDStatisticalGraphDataBuilder {
    inner: StatisticalGraphData,
}

impl RTDStatisticalGraphDataBuilder {
    pub fn build(&self) -> StatisticalGraphData {
        self.inner.clone()
    }

    pub fn json_data<T: AsRef<str>>(&mut self, json_data: T) -> &mut Self {
        self.inner.json_data = json_data.as_ref().to_string();
        self
    }

    pub fn zoom_token<T: AsRef<str>>(&mut self, zoom_token: T) -> &mut Self {
        self.inner.zoom_token = zoom_token.as_ref().to_string();
        self
    }
}

impl AsRef<StatisticalGraphData> for StatisticalGraphData {
    fn as_ref(&self) -> &StatisticalGraphData {
        self
    }
}

impl AsRef<StatisticalGraphData> for RTDStatisticalGraphDataBuilder {
    fn as_ref(&self) -> &StatisticalGraphData {
        &self.inner
    }
}

/// An error message to be shown to the user instead of the graph
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct StatisticalGraphError {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
    /// The error message
    error_message: String,
}

impl RObject for StatisticalGraphError {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

impl TDStatisticalGraph for StatisticalGraphError {}

impl StatisticalGraphError {
    pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> RTDStatisticalGraphErrorBuilder {
        let mut inner = StatisticalGraphError::default();
        inner.extra = Some(Uuid::new_v4().to_string());

        RTDStatisticalGraphErrorBuilder { inner }
    }

    pub fn error_message(&self) -> &String {
        &self.error_message
    }
}

#[doc(hidden)]
pub struct RTDStatisticalGraphErrorBuilder {
    inner: StatisticalGraphError,
}

impl RTDStatisticalGraphErrorBuilder {
    pub fn build(&self) -> StatisticalGraphError {
        self.inner.clone()
    }

    pub fn error_message<T: AsRef<str>>(&mut self, error_message: T) -> &mut Self {
        self.inner.error_message = error_message.as_ref().to_string();
        self
    }
}

impl AsRef<StatisticalGraphError> for StatisticalGraphError {
    fn as_ref(&self) -> &StatisticalGraphError {
        self
    }
}

impl AsRef<StatisticalGraphError> for RTDStatisticalGraphErrorBuilder {
    fn as_ref(&self) -> &StatisticalGraphError {
        &self.inner
    }
}