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
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DeliverPushMessageParams {
    #[serde(rename = "origin")]
    pub origin: String,
    #[serde(rename = "registrationId")]
    pub registration_id: super::types::RegistrationId,
    #[serde(rename = "data")]
    pub data: String,
}
impl DeliverPushMessageParams {
    pub fn new(
        origin: impl Into<String>,
        registration_id: impl Into<super::types::RegistrationId>,
        data: impl Into<String>,
    ) -> Self {
        Self {
            origin: origin.into(),
            registration_id: registration_id.into(),
            data: data.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum DeliverPushMessageMethod {
    #[serde(rename = "ServiceWorker.deliverPushMessage")]
    DeliverPushMessage,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DeliverPushMessage {
    pub method: DeliverPushMessageMethod,
    pub params: DeliverPushMessageParams,
}
impl DeliverPushMessage {
    pub const IDENTIFIER: &'static str = "ServiceWorker.deliverPushMessage";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for DeliverPushMessage {
    type Result = super::results::DeliverPushMessageResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DisableParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum DisableMethod {
    #[serde(rename = "ServiceWorker.disable")]
    Disable,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Disable {
    pub method: DisableMethod,
    pub params: DisableParams,
}
impl Disable {
    pub const IDENTIFIER: &'static str = "ServiceWorker.disable";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for Disable {
    type Result = super::results::DisableResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DispatchSyncEventParams {
    #[serde(rename = "origin")]
    pub origin: String,
    #[serde(rename = "registrationId")]
    pub registration_id: super::types::RegistrationId,
    #[serde(rename = "tag")]
    pub tag: String,
    #[serde(rename = "lastChance")]
    pub last_chance: bool,
}
impl DispatchSyncEventParams {
    pub fn new(
        origin: impl Into<String>,
        registration_id: impl Into<super::types::RegistrationId>,
        tag: impl Into<String>,
        last_chance: impl Into<bool>,
    ) -> Self {
        Self {
            origin: origin.into(),
            registration_id: registration_id.into(),
            tag: tag.into(),
            last_chance: last_chance.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum DispatchSyncEventMethod {
    #[serde(rename = "ServiceWorker.dispatchSyncEvent")]
    DispatchSyncEvent,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DispatchSyncEvent {
    pub method: DispatchSyncEventMethod,
    pub params: DispatchSyncEventParams,
}
impl DispatchSyncEvent {
    pub const IDENTIFIER: &'static str = "ServiceWorker.dispatchSyncEvent";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for DispatchSyncEvent {
    type Result = super::results::DispatchSyncEventResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DispatchPeriodicSyncEventParams {
    #[serde(rename = "origin")]
    pub origin: String,
    #[serde(rename = "registrationId")]
    pub registration_id: super::types::RegistrationId,
    #[serde(rename = "tag")]
    pub tag: String,
}
impl DispatchPeriodicSyncEventParams {
    pub fn new(
        origin: impl Into<String>,
        registration_id: impl Into<super::types::RegistrationId>,
        tag: impl Into<String>,
    ) -> Self {
        Self {
            origin: origin.into(),
            registration_id: registration_id.into(),
            tag: tag.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum DispatchPeriodicSyncEventMethod {
    #[serde(rename = "ServiceWorker.dispatchPeriodicSyncEvent")]
    DispatchPeriodicSyncEvent,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct DispatchPeriodicSyncEvent {
    pub method: DispatchPeriodicSyncEventMethod,
    pub params: DispatchPeriodicSyncEventParams,
}
impl DispatchPeriodicSyncEvent {
    pub const IDENTIFIER: &'static str = "ServiceWorker.dispatchPeriodicSyncEvent";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for DispatchPeriodicSyncEvent {
    type Result = super::results::DispatchPeriodicSyncEventResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct EnableParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum EnableMethod {
    #[serde(rename = "ServiceWorker.enable")]
    Enable,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Enable {
    pub method: EnableMethod,
    pub params: EnableParams,
}
impl Enable {
    pub const IDENTIFIER: &'static str = "ServiceWorker.enable";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for Enable {
    type Result = super::results::EnableResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetForceUpdateOnPageLoadParams {
    #[serde(rename = "forceUpdateOnPageLoad")]
    pub force_update_on_page_load: bool,
}
impl SetForceUpdateOnPageLoadParams {
    pub fn new(force_update_on_page_load: impl Into<bool>) -> Self {
        Self {
            force_update_on_page_load: force_update_on_page_load.into(),
        }
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SetForceUpdateOnPageLoadMethod {
    #[serde(rename = "ServiceWorker.setForceUpdateOnPageLoad")]
    SetForceUpdateOnPageLoad,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SetForceUpdateOnPageLoad {
    pub method: SetForceUpdateOnPageLoadMethod,
    pub params: SetForceUpdateOnPageLoadParams,
}
impl SetForceUpdateOnPageLoad {
    pub const IDENTIFIER: &'static str = "ServiceWorker.setForceUpdateOnPageLoad";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SetForceUpdateOnPageLoad {
    type Result = super::results::SetForceUpdateOnPageLoadResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SkipWaitingParams {
    #[serde(rename = "scopeURL")]
    pub scope_url: String,
}
impl SkipWaitingParams {
    pub fn new(scope_url: impl Into<String>) -> Self {
        Self {
            scope_url: scope_url.into(),
        }
    }
}
impl<T: Into<String>> From<T> for SkipWaitingParams {
    fn from(url: T) -> Self {
        SkipWaitingParams::new(url)
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum SkipWaitingMethod {
    #[serde(rename = "ServiceWorker.skipWaiting")]
    SkipWaiting,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct SkipWaiting {
    pub method: SkipWaitingMethod,
    pub params: SkipWaitingParams,
}
impl SkipWaiting {
    pub const IDENTIFIER: &'static str = "ServiceWorker.skipWaiting";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for SkipWaiting {
    type Result = super::results::SkipWaitingResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StartWorkerParams {
    #[serde(rename = "scopeURL")]
    pub scope_url: String,
}
impl StartWorkerParams {
    pub fn new(scope_url: impl Into<String>) -> Self {
        Self {
            scope_url: scope_url.into(),
        }
    }
}
impl<T: Into<String>> From<T> for StartWorkerParams {
    fn from(url: T) -> Self {
        StartWorkerParams::new(url)
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum StartWorkerMethod {
    #[serde(rename = "ServiceWorker.startWorker")]
    StartWorker,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StartWorker {
    pub method: StartWorkerMethod,
    pub params: StartWorkerParams,
}
impl StartWorker {
    pub const IDENTIFIER: &'static str = "ServiceWorker.startWorker";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for StartWorker {
    type Result = super::results::StartWorkerResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StopAllWorkersParams {}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum StopAllWorkersMethod {
    #[serde(rename = "ServiceWorker.stopAllWorkers")]
    StopAllWorkers,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StopAllWorkers {
    pub method: StopAllWorkersMethod,
    pub params: StopAllWorkersParams,
}
impl StopAllWorkers {
    pub const IDENTIFIER: &'static str = "ServiceWorker.stopAllWorkers";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for StopAllWorkers {
    type Result = super::results::StopAllWorkersResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StopWorkerParams {
    #[serde(rename = "versionId")]
    pub version_id: String,
}
impl StopWorkerParams {
    pub fn new(version_id: impl Into<String>) -> Self {
        Self {
            version_id: version_id.into(),
        }
    }
}
impl<T: Into<String>> From<T> for StopWorkerParams {
    fn from(url: T) -> Self {
        StopWorkerParams::new(url)
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum StopWorkerMethod {
    #[serde(rename = "ServiceWorker.stopWorker")]
    StopWorker,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct StopWorker {
    pub method: StopWorkerMethod,
    pub params: StopWorkerParams,
}
impl StopWorker {
    pub const IDENTIFIER: &'static str = "ServiceWorker.stopWorker";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for StopWorker {
    type Result = super::results::StopWorkerResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct UnregisterParams {
    #[serde(rename = "scopeURL")]
    pub scope_url: String,
}
impl UnregisterParams {
    pub fn new(scope_url: impl Into<String>) -> Self {
        Self {
            scope_url: scope_url.into(),
        }
    }
}
impl<T: Into<String>> From<T> for UnregisterParams {
    fn from(url: T) -> Self {
        UnregisterParams::new(url)
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum UnregisterMethod {
    #[serde(rename = "ServiceWorker.unregister")]
    Unregister,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Unregister {
    pub method: UnregisterMethod,
    pub params: UnregisterParams,
}
impl Unregister {
    pub const IDENTIFIER: &'static str = "ServiceWorker.unregister";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for Unregister {
    type Result = super::results::UnregisterResult;
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct UpdateRegistrationParams {
    #[serde(rename = "scopeURL")]
    pub scope_url: String,
}
impl UpdateRegistrationParams {
    pub fn new(scope_url: impl Into<String>) -> Self {
        Self {
            scope_url: scope_url.into(),
        }
    }
}
impl<T: Into<String>> From<T> for UpdateRegistrationParams {
    fn from(url: T) -> Self {
        UpdateRegistrationParams::new(url)
    }
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum UpdateRegistrationMethod {
    #[serde(rename = "ServiceWorker.updateRegistration")]
    UpdateRegistration,
}
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct UpdateRegistration {
    pub method: UpdateRegistrationMethod,
    pub params: UpdateRegistrationParams,
}
impl UpdateRegistration {
    pub const IDENTIFIER: &'static str = "ServiceWorker.updateRegistration";
    pub fn identifier(&self) -> &'static str {
        Self::IDENTIFIER
    }
}
impl crate::CommandResult for UpdateRegistration {
    type Result = super::results::UpdateRegistrationResult;
}
group_enum ! (ServiceWorkerCommands { DeliverPushMessage (DeliverPushMessage) , Disable (Disable) , DispatchSyncEvent (DispatchSyncEvent) , DispatchPeriodicSyncEvent (DispatchPeriodicSyncEvent) , Enable (Enable) , SetForceUpdateOnPageLoad (SetForceUpdateOnPageLoad) , SkipWaiting (SkipWaiting) , StartWorker (StartWorker) , StopAllWorkers (StopAllWorkers) , StopWorker (StopWorker) , Unregister (Unregister) , UpdateRegistration (UpdateRegistration) } + identifiable);