rustenium-cdp-definitions 0.1.1

Generated Chrome DevTools Protocol type definitions for Rustenium
Documentation
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
use super::commands::*;
impl Enable {
    pub fn builder() -> EnableBuilder {
        <EnableBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct EnableBuilder {
    state: Option<super::types::CentralState>,
    le_supported: Option<bool>,
}
impl EnableBuilder {
    pub fn state(mut self, state: impl Into<super::types::CentralState>) -> Self {
        self.state = Some(state.into());
        self
    }
    pub fn le_supported(mut self, le_supported: impl Into<bool>) -> Self {
        self.le_supported = Some(le_supported.into());
        self
    }
    pub fn build(self) -> Result<Enable, String> {
        Ok(Enable {
            method: EnableMethod::Enable,
            params: EnableParams {
                state: self
                    .state
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(state)))?,
                le_supported: self.le_supported.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(le_supported))
                })?,
            },
        })
    }
}
impl SetSimulatedCentralState {
    pub fn builder() -> SetSimulatedCentralStateBuilder {
        <SetSimulatedCentralStateBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SetSimulatedCentralStateBuilder {
    state: Option<super::types::CentralState>,
}
impl SetSimulatedCentralStateBuilder {
    pub fn state(mut self, state: impl Into<super::types::CentralState>) -> Self {
        self.state = Some(state.into());
        self
    }
    pub fn build(self) -> Result<SetSimulatedCentralState, String> {
        Ok(SetSimulatedCentralState {
            method: SetSimulatedCentralStateMethod::SetSimulatedCentralState,
            params: SetSimulatedCentralStateParams {
                state: self
                    .state
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(state)))?,
            },
        })
    }
}
#[derive(Debug, Clone, Default)]
pub struct DisableBuilder;
impl DisableBuilder {
    pub fn new() -> Self {
        Self
    }
    pub fn build(self) -> Disable {
        Disable {
            method: DisableMethod::Disable,
            params: DisableParams {},
        }
    }
}
impl Disable {
    pub fn builder() -> DisableBuilder {
        DisableBuilder
    }
}
impl SimulatePreconnectedPeripheral {
    pub fn builder() -> SimulatePreconnectedPeripheralBuilder {
        <SimulatePreconnectedPeripheralBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SimulatePreconnectedPeripheralBuilder {
    address: Option<String>,
    name: Option<String>,
    manufacturer_data: Option<Vec<super::types::ManufacturerData>>,
    known_service_uuids: Option<Vec<String>>,
}
impl SimulatePreconnectedPeripheralBuilder {
    pub fn address(mut self, address: impl Into<String>) -> Self {
        self.address = Some(address.into());
        self
    }
    pub fn name(mut self, name: impl Into<String>) -> Self {
        self.name = Some(name.into());
        self
    }
    pub fn manufacturer_data(
        mut self,
        manufacturer_data: impl Into<super::types::ManufacturerData>,
    ) -> Self {
        let v = self.manufacturer_data.get_or_insert(Vec::new());
        v.push(manufacturer_data.into());
        self
    }
    pub fn manufacturer_datas<I, S>(mut self, manufacturer_datas: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<super::types::ManufacturerData>,
    {
        let v = self.manufacturer_data.get_or_insert(Vec::new());
        for val in manufacturer_datas {
            v.push(val.into());
        }
        self
    }
    pub fn known_service_uuid(mut self, known_service_uuid: impl Into<String>) -> Self {
        let v = self.known_service_uuids.get_or_insert(Vec::new());
        v.push(known_service_uuid.into());
        self
    }
    pub fn known_service_uuids<I, S>(mut self, known_service_uuids: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<String>,
    {
        let v = self.known_service_uuids.get_or_insert(Vec::new());
        for val in known_service_uuids {
            v.push(val.into());
        }
        self
    }
    pub fn build(self) -> Result<SimulatePreconnectedPeripheral, String> {
        Ok(SimulatePreconnectedPeripheral {
            method: SimulatePreconnectedPeripheralMethod::SimulatePreconnectedPeripheral,
            params: SimulatePreconnectedPeripheralParams {
                address: self
                    .address
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(address)))?,
                name: self
                    .name
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(name)))?,
                manufacturer_data: self.manufacturer_data.ok_or_else(|| {
                    format!(
                        "Field `{}` is mandatory.",
                        std::stringify!(manufacturer_data)
                    )
                })?,
                known_service_uuids: self.known_service_uuids.ok_or_else(|| {
                    format!(
                        "Field `{}` is mandatory.",
                        std::stringify!(known_service_uuids)
                    )
                })?,
            },
        })
    }
}
impl SimulateAdvertisement {
    pub fn builder() -> SimulateAdvertisementBuilder {
        <SimulateAdvertisementBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SimulateAdvertisementBuilder {
    entry: Option<super::types::ScanEntry>,
}
impl SimulateAdvertisementBuilder {
    pub fn entry(mut self, entry: impl Into<super::types::ScanEntry>) -> Self {
        self.entry = Some(entry.into());
        self
    }
    pub fn build(self) -> Result<SimulateAdvertisement, String> {
        Ok(SimulateAdvertisement {
            method: SimulateAdvertisementMethod::SimulateAdvertisement,
            params: SimulateAdvertisementParams {
                entry: self
                    .entry
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(entry)))?,
            },
        })
    }
}
impl SimulateGattOperationResponse {
    pub fn builder() -> SimulateGattOperationResponseBuilder {
        <SimulateGattOperationResponseBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SimulateGattOperationResponseBuilder {
    address: Option<String>,
    r#type: Option<super::types::GattOperationType>,
    code: Option<i64>,
}
impl SimulateGattOperationResponseBuilder {
    pub fn address(mut self, address: impl Into<String>) -> Self {
        self.address = Some(address.into());
        self
    }
    pub fn r#type(mut self, r#type: impl Into<super::types::GattOperationType>) -> Self {
        self.r#type = Some(r#type.into());
        self
    }
    pub fn code(mut self, code: impl Into<i64>) -> Self {
        self.code = Some(code.into());
        self
    }
    pub fn build(self) -> Result<SimulateGattOperationResponse, String> {
        Ok(SimulateGattOperationResponse {
            method: SimulateGattOperationResponseMethod::SimulateGattOperationResponse,
            params: SimulateGattOperationResponseParams {
                address: self
                    .address
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(address)))?,
                r#type: self
                    .r#type
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(r#type)))?,
                code: self
                    .code
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(code)))?,
            },
        })
    }
}
impl SimulateCharacteristicOperationResponse {
    pub fn builder() -> SimulateCharacteristicOperationResponseBuilder {
        <SimulateCharacteristicOperationResponseBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SimulateCharacteristicOperationResponseBuilder {
    characteristic_id: Option<String>,
    r#type: Option<super::types::CharacteristicOperationType>,
    code: Option<i64>,
    data: Option<crate::Binary>,
}
impl SimulateCharacteristicOperationResponseBuilder {
    pub fn characteristic_id(mut self, characteristic_id: impl Into<String>) -> Self {
        self.characteristic_id = Some(characteristic_id.into());
        self
    }
    pub fn r#type(mut self, r#type: impl Into<super::types::CharacteristicOperationType>) -> Self {
        self.r#type = Some(r#type.into());
        self
    }
    pub fn code(mut self, code: impl Into<i64>) -> Self {
        self.code = Some(code.into());
        self
    }
    pub fn data(mut self, data: impl Into<crate::Binary>) -> Self {
        self.data = Some(data.into());
        self
    }
    pub fn build(self) -> Result<SimulateCharacteristicOperationResponse, String> {
        Ok (SimulateCharacteristicOperationResponse { method : SimulateCharacteristicOperationResponseMethod :: SimulateCharacteristicOperationResponse , params : SimulateCharacteristicOperationResponseParams { characteristic_id : self . characteristic_id . ok_or_else (|| format ! ("Field `{}` is mandatory." , std :: stringify ! (characteristic_id))) ? , r#type : self . r#type . ok_or_else (|| format ! ("Field `{}` is mandatory." , std :: stringify ! (r#type))) ? , code : self . code . ok_or_else (|| format ! ("Field `{}` is mandatory." , std :: stringify ! (code))) ? , data : self . data , } , })
    }
}
impl SimulateDescriptorOperationResponse {
    pub fn builder() -> SimulateDescriptorOperationResponseBuilder {
        <SimulateDescriptorOperationResponseBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SimulateDescriptorOperationResponseBuilder {
    descriptor_id: Option<String>,
    r#type: Option<super::types::DescriptorOperationType>,
    code: Option<i64>,
    data: Option<crate::Binary>,
}
impl SimulateDescriptorOperationResponseBuilder {
    pub fn descriptor_id(mut self, descriptor_id: impl Into<String>) -> Self {
        self.descriptor_id = Some(descriptor_id.into());
        self
    }
    pub fn r#type(mut self, r#type: impl Into<super::types::DescriptorOperationType>) -> Self {
        self.r#type = Some(r#type.into());
        self
    }
    pub fn code(mut self, code: impl Into<i64>) -> Self {
        self.code = Some(code.into());
        self
    }
    pub fn data(mut self, data: impl Into<crate::Binary>) -> Self {
        self.data = Some(data.into());
        self
    }
    pub fn build(self) -> Result<SimulateDescriptorOperationResponse, String> {
        Ok(SimulateDescriptorOperationResponse {
            method: SimulateDescriptorOperationResponseMethod::SimulateDescriptorOperationResponse,
            params: SimulateDescriptorOperationResponseParams {
                descriptor_id: self.descriptor_id.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(descriptor_id))
                })?,
                r#type: self
                    .r#type
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(r#type)))?,
                code: self
                    .code
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(code)))?,
                data: self.data,
            },
        })
    }
}
impl AddService {
    pub fn builder() -> AddServiceBuilder {
        <AddServiceBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct AddServiceBuilder {
    address: Option<String>,
    service_uuid: Option<String>,
}
impl AddServiceBuilder {
    pub fn address(mut self, address: impl Into<String>) -> Self {
        self.address = Some(address.into());
        self
    }
    pub fn service_uuid(mut self, service_uuid: impl Into<String>) -> Self {
        self.service_uuid = Some(service_uuid.into());
        self
    }
    pub fn build(self) -> Result<AddService, String> {
        Ok(AddService {
            method: AddServiceMethod::AddService,
            params: AddServiceParams {
                address: self
                    .address
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(address)))?,
                service_uuid: self.service_uuid.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(service_uuid))
                })?,
            },
        })
    }
}
impl RemoveService {
    pub fn builder() -> RemoveServiceBuilder {
        <RemoveServiceBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct RemoveServiceBuilder {
    service_id: Option<String>,
}
impl RemoveServiceBuilder {
    pub fn service_id(mut self, service_id: impl Into<String>) -> Self {
        self.service_id = Some(service_id.into());
        self
    }
    pub fn build(self) -> Result<RemoveService, String> {
        Ok(RemoveService {
            method: RemoveServiceMethod::RemoveService,
            params: RemoveServiceParams {
                service_id: self.service_id.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(service_id))
                })?,
            },
        })
    }
}
impl AddCharacteristic {
    pub fn builder() -> AddCharacteristicBuilder {
        <AddCharacteristicBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct AddCharacteristicBuilder {
    service_id: Option<String>,
    characteristic_uuid: Option<String>,
    properties: Option<super::types::CharacteristicProperties>,
}
impl AddCharacteristicBuilder {
    pub fn service_id(mut self, service_id: impl Into<String>) -> Self {
        self.service_id = Some(service_id.into());
        self
    }
    pub fn characteristic_uuid(mut self, characteristic_uuid: impl Into<String>) -> Self {
        self.characteristic_uuid = Some(characteristic_uuid.into());
        self
    }
    pub fn properties(
        mut self,
        properties: impl Into<super::types::CharacteristicProperties>,
    ) -> Self {
        self.properties = Some(properties.into());
        self
    }
    pub fn build(self) -> Result<AddCharacteristic, String> {
        Ok(AddCharacteristic {
            method: AddCharacteristicMethod::AddCharacteristic,
            params: AddCharacteristicParams {
                service_id: self.service_id.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(service_id))
                })?,
                characteristic_uuid: self.characteristic_uuid.ok_or_else(|| {
                    format!(
                        "Field `{}` is mandatory.",
                        std::stringify!(characteristic_uuid)
                    )
                })?,
                properties: self.properties.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(properties))
                })?,
            },
        })
    }
}
impl RemoveCharacteristic {
    pub fn builder() -> RemoveCharacteristicBuilder {
        <RemoveCharacteristicBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct RemoveCharacteristicBuilder {
    characteristic_id: Option<String>,
}
impl RemoveCharacteristicBuilder {
    pub fn characteristic_id(mut self, characteristic_id: impl Into<String>) -> Self {
        self.characteristic_id = Some(characteristic_id.into());
        self
    }
    pub fn build(self) -> Result<RemoveCharacteristic, String> {
        Ok(RemoveCharacteristic {
            method: RemoveCharacteristicMethod::RemoveCharacteristic,
            params: RemoveCharacteristicParams {
                characteristic_id: self.characteristic_id.ok_or_else(|| {
                    format!(
                        "Field `{}` is mandatory.",
                        std::stringify!(characteristic_id)
                    )
                })?,
            },
        })
    }
}
impl AddDescriptor {
    pub fn builder() -> AddDescriptorBuilder {
        <AddDescriptorBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct AddDescriptorBuilder {
    characteristic_id: Option<String>,
    descriptor_uuid: Option<String>,
}
impl AddDescriptorBuilder {
    pub fn characteristic_id(mut self, characteristic_id: impl Into<String>) -> Self {
        self.characteristic_id = Some(characteristic_id.into());
        self
    }
    pub fn descriptor_uuid(mut self, descriptor_uuid: impl Into<String>) -> Self {
        self.descriptor_uuid = Some(descriptor_uuid.into());
        self
    }
    pub fn build(self) -> Result<AddDescriptor, String> {
        Ok(AddDescriptor {
            method: AddDescriptorMethod::AddDescriptor,
            params: AddDescriptorParams {
                characteristic_id: self.characteristic_id.ok_or_else(|| {
                    format!(
                        "Field `{}` is mandatory.",
                        std::stringify!(characteristic_id)
                    )
                })?,
                descriptor_uuid: self.descriptor_uuid.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(descriptor_uuid))
                })?,
            },
        })
    }
}
impl RemoveDescriptor {
    pub fn builder() -> RemoveDescriptorBuilder {
        <RemoveDescriptorBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct RemoveDescriptorBuilder {
    descriptor_id: Option<String>,
}
impl RemoveDescriptorBuilder {
    pub fn descriptor_id(mut self, descriptor_id: impl Into<String>) -> Self {
        self.descriptor_id = Some(descriptor_id.into());
        self
    }
    pub fn build(self) -> Result<RemoveDescriptor, String> {
        Ok(RemoveDescriptor {
            method: RemoveDescriptorMethod::RemoveDescriptor,
            params: RemoveDescriptorParams {
                descriptor_id: self.descriptor_id.ok_or_else(|| {
                    format!("Field `{}` is mandatory.", std::stringify!(descriptor_id))
                })?,
            },
        })
    }
}
impl SimulateGattDisconnection {
    pub fn builder() -> SimulateGattDisconnectionBuilder {
        <SimulateGattDisconnectionBuilder as Default>::default()
    }
}
#[derive(Default, Clone)]
pub struct SimulateGattDisconnectionBuilder {
    address: Option<String>,
}
impl SimulateGattDisconnectionBuilder {
    pub fn address(mut self, address: impl Into<String>) -> Self {
        self.address = Some(address.into());
        self
    }
    pub fn build(self) -> Result<SimulateGattDisconnection, String> {
        Ok(SimulateGattDisconnection {
            method: SimulateGattDisconnectionMethod::SimulateGattDisconnection,
            params: SimulateGattDisconnectionParams {
                address: self
                    .address
                    .ok_or_else(|| format!("Field `{}` is mandatory.", std::stringify!(address)))?,
            },
        })
    }
}