cdp-protocol 0.3.1

A Rust implementation of the Chrome DevTools Protocol
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
// Auto-generated from Chrome at version 146.0.7680.165 domain: Input
#![allow(dead_code)]
#[allow(unused_imports)]
use super::types::*;
#[allow(unused_imports)]
use derive_builder::Builder;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use serde_json::Value as Json;
pub type TimeSinceEpoch = JsFloat;
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum GestureSourceType {
    #[serde(rename = "default")]
    Default,
    #[serde(rename = "touch")]
    Touch,
    #[serde(rename = "mouse")]
    Mouse,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum MouseButton {
    #[serde(rename = "none")]
    None,
    #[serde(rename = "left")]
    Left,
    #[serde(rename = "middle")]
    Middle,
    #[serde(rename = "right")]
    Right,
    #[serde(rename = "back")]
    Back,
    #[serde(rename = "forward")]
    Forward,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum DispatchDragEventTypeOption {
    #[serde(rename = "dragEnter")]
    DragEnter,
    #[serde(rename = "dragOver")]
    DragOver,
    #[serde(rename = "drop")]
    Drop,
    #[serde(rename = "dragCancel")]
    DragCancel,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum DispatchKeyEventTypeOption {
    #[serde(rename = "keyDown")]
    KeyDown,
    #[serde(rename = "keyUp")]
    KeyUp,
    #[serde(rename = "rawKeyDown")]
    RawKeyDown,
    #[serde(rename = "char")]
    Char,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum DispatchMouseEventTypeOption {
    #[serde(rename = "mousePressed")]
    MousePressed,
    #[serde(rename = "mouseReleased")]
    MouseReleased,
    #[serde(rename = "mouseMoved")]
    MouseMoved,
    #[serde(rename = "mouseWheel")]
    MouseWheel,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum DispatchMouseEventPointerTypeOption {
    #[serde(rename = "mouse")]
    Mouse,
    #[serde(rename = "pen")]
    Pen,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum DispatchTouchEventTypeOption {
    #[serde(rename = "touchStart")]
    TouchStart,
    #[serde(rename = "touchEnd")]
    TouchEnd,
    #[serde(rename = "touchMove")]
    TouchMove,
    #[serde(rename = "touchCancel")]
    TouchCancel,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub enum EmulateTouchFromMouseEventTypeOption {
    #[serde(rename = "mousePressed")]
    MousePressed,
    #[serde(rename = "mouseReleased")]
    MouseReleased,
    #[serde(rename = "mouseMoved")]
    MouseMoved,
    #[serde(rename = "mouseWheel")]
    MouseWheel,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
pub struct TouchPoint {
    #[serde(default)]
    #[doc = "X coordinate of the event relative to the main frame's viewport in CSS pixels."]
    pub x: JsFloat,
    #[serde(default)]
    #[doc = "Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to\n the top of the viewport and Y increases as it proceeds towards the bottom of the viewport."]
    pub y: JsFloat,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "X radius of the touch area (default: 1.0)."]
    pub radius_x: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Y radius of the touch area (default: 1.0)."]
    pub radius_y: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Rotation angle (default: 0.0)."]
    pub rotation_angle: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Force (default: 1.0)."]
    pub force: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The normalized tangential pressure, which has a range of \\[-1,1\\] (default: 0)."]
    pub tangential_pressure: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range \\[-90,90\\], a positive tiltX is to the right (default: 0)"]
    pub tilt_x: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range \\[-90,90\\], a positive tiltY is towards the user (default: 0)."]
    pub tilt_y: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The clockwise rotation of a pen stylus around its own major axis, in degrees in the range \\[0,359\\] (default: 0)."]
    pub twist: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Identifier used to track touch sources between events, must be unique within an event."]
    pub id: Option<JsFloat>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
pub struct DragDataItem {
    #[serde(default)]
    #[doc = "Mime type of the dragged data."]
    pub mime_type: String,
    #[serde(default)]
    #[doc = "Depending of the value of `mimeType`, it contains the dragged link,\n text, HTML markup or any other data."]
    pub data: String,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Title associated with a link. Only valid when `mimeType` == \"text/uri-list\"."]
    pub title: Option<String>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Stores the base URL for the contained markup. Only valid when `mimeType`\n == \"text/html\"."]
    #[serde(rename = "baseURL")]
    pub base_url: Option<String>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
pub struct DragData {
    pub items: Vec<DragDataItem>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "List of filenames that should be included when dropping"]
    pub files: Option<Vec<String>>,
    #[serde(default)]
    #[doc = "Bit field representing allowed drag operations. Copy = 1, Link = 2, Move = 16"]
    pub drag_operations_mask: JsUInt,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Dispatches a drag event into the page."]
pub struct DispatchDragEvent {
    #[doc = "Type of the drag event."]
    pub r#type: DispatchDragEventTypeOption,
    #[serde(default)]
    #[doc = "X coordinate of the event relative to the main frame's viewport in CSS pixels."]
    pub x: JsFloat,
    #[serde(default)]
    #[doc = "Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to\n the top of the viewport and Y increases as it proceeds towards the bottom of the viewport."]
    pub y: JsFloat,
    pub data: DragData,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8\n (default: 0)."]
    pub modifiers: Option<JsUInt>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Dispatches a key event to the page."]
pub struct DispatchKeyEvent {
    #[doc = "Type of the key event."]
    pub r#type: DispatchKeyEventTypeOption,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8\n (default: 0)."]
    pub modifiers: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Time at which the event occurred."]
    pub timestamp: Option<TimeSinceEpoch>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Text as generated by processing a virtual key code with a keyboard layout. Not needed for\n for `keyUp` and `rawKeyDown` events (default: \"\")"]
    pub text: Option<String>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Text that would have been generated by the keyboard if no modifiers were pressed (except for\n shift). Useful for shortcut (accelerator) key handling (default: \"\")."]
    pub unmodified_text: Option<String>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Unique key identifier (e.g., 'U+0041') (default: \"\")."]
    pub key_identifier: Option<String>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Unique DOM defined string value for each physical key (e.g., 'KeyA') (default: \"\")."]
    pub code: Option<String>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Unique DOM defined string value describing the meaning of the key in the context of active\n modifiers, keyboard layout, etc (e.g., 'AltGr') (default: \"\")."]
    pub key: Option<String>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Windows virtual key code (default: 0)."]
    pub windows_virtual_key_code: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Native virtual key code (default: 0)."]
    pub native_virtual_key_code: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Whether the event was generated from auto repeat (default: false)."]
    pub auto_repeat: Option<bool>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Whether the event was generated from the keypad (default: false)."]
    pub is_keypad: Option<bool>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Whether the event was a system key event (default: false)."]
    pub is_system_key: Option<bool>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Whether the event was from the left or right side of the keyboard. 1=Left, 2=Right (default:\n 0)."]
    pub location: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Editing commands to send with the key event (e.g., 'selectAll') (default: \\[\\]).\n These are related to but not equal the command names used in `document.execCommand` and NSStandardKeyBindingResponding.\n See <https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/editing/commands/editor_command_names.h> for valid command names."]
    pub commands: Option<Vec<String>>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "This method emulates inserting text that doesn't come from a key press,\n for example an emoji keyboard or an IME."]
pub struct InsertText {
    #[serde(default)]
    #[doc = "The text to insert."]
    pub text: String,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "This method sets the current candidate text for IME.\n Use imeCommitComposition to commit the final text.\n Use imeSetComposition with empty string as text to cancel composition."]
pub struct ImeSetComposition {
    #[serde(default)]
    #[doc = "The text to insert"]
    pub text: String,
    #[serde(default)]
    #[doc = "selection start"]
    pub selection_start: JsUInt,
    #[serde(default)]
    #[doc = "selection end"]
    pub selection_end: JsUInt,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "replacement start"]
    pub replacement_start: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "replacement end"]
    pub replacement_end: Option<JsUInt>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Dispatches a mouse event to the page."]
pub struct DispatchMouseEvent {
    #[doc = "Type of the mouse event."]
    pub r#type: DispatchMouseEventTypeOption,
    #[serde(default)]
    #[doc = "X coordinate of the event relative to the main frame's viewport in CSS pixels."]
    pub x: JsFloat,
    #[serde(default)]
    #[doc = "Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to\n the top of the viewport and Y increases as it proceeds towards the bottom of the viewport."]
    pub y: JsFloat,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8\n (default: 0)."]
    pub modifiers: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Time at which the event occurred."]
    pub timestamp: Option<TimeSinceEpoch>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Mouse button (default: \"none\")."]
    pub button: Option<MouseButton>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "A number indicating which buttons are pressed on the mouse when a mouse event is triggered.\n Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0."]
    pub buttons: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Number of times the mouse button was clicked (default: 0)."]
    pub click_count: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The normalized pressure, which has a range of \\[0,1\\] (default: 0)."]
    pub force: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The normalized tangential pressure, which has a range of \\[-1,1\\] (default: 0)."]
    pub tangential_pressure: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The plane angle between the Y-Z plane and the plane containing both the stylus axis and the Y axis, in degrees of the range \\[-90,90\\], a positive tiltX is to the right (default: 0)."]
    pub tilt_x: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The plane angle between the X-Z plane and the plane containing both the stylus axis and the X axis, in degrees of the range \\[-90,90\\], a positive tiltY is towards the user (default: 0)."]
    pub tilt_y: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The clockwise rotation of a pen stylus around its own major axis, in degrees in the range \\[0,359\\] (default: 0)."]
    pub twist: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "X delta in CSS pixels for mouse wheel event (default: 0)."]
    pub delta_x: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Y delta in CSS pixels for mouse wheel event (default: 0)."]
    pub delta_y: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Pointer type (default: \"mouse\")."]
    pub pointer_type: Option<DispatchMouseEventPointerTypeOption>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Dispatches a touch event to the page."]
pub struct DispatchTouchEvent {
    #[doc = "Type of the touch event. TouchEnd and TouchCancel must not contain any touch points, while\n TouchStart and TouchMove must contains at least one."]
    pub r#type: DispatchTouchEventTypeOption,
    #[doc = "Active touch points on the touch device. One event per any changed point (compared to\n previous touch event in a sequence) is generated, emulating pressing/moving/releasing points\n one by one."]
    pub touch_points: Vec<TouchPoint>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8\n (default: 0)."]
    pub modifiers: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Time at which the event occurred."]
    pub timestamp: Option<TimeSinceEpoch>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
pub struct CancelDragging(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Emulates touch event from the mouse event parameters."]
pub struct EmulateTouchFromMouseEvent {
    #[doc = "Type of the mouse event."]
    pub r#type: EmulateTouchFromMouseEventTypeOption,
    #[serde(default)]
    #[doc = "X coordinate of the mouse pointer in DIP."]
    pub x: JsUInt,
    #[serde(default)]
    #[doc = "Y coordinate of the mouse pointer in DIP."]
    pub y: JsUInt,
    #[doc = "Mouse button. Only \"none\", \"left\", \"right\" are supported."]
    pub button: MouseButton,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Time at which the event occurred (default: current time)."]
    pub timestamp: Option<TimeSinceEpoch>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "X delta in DIP for mouse wheel event (default: 0)."]
    pub delta_x: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Y delta in DIP for mouse wheel event (default: 0)."]
    pub delta_y: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8\n (default: 0)."]
    pub modifiers: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Number of times the mouse button was clicked (default: 0)."]
    pub click_count: Option<JsUInt>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Ignores input events (useful while auditing page)."]
pub struct SetIgnoreInputEvents {
    #[serde(default)]
    #[doc = "Ignores input events processing when set to true."]
    pub ignore: bool,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Prevents default drag and drop behavior and instead emits `Input.dragIntercepted` events.\n Drag and drop behavior can be directly controlled via `Input.dispatchDragEvent`."]
pub struct SetInterceptDrags {
    #[serde(default)]
    pub enabled: bool,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Synthesizes a pinch gesture over a time period by issuing appropriate touch events."]
pub struct SynthesizePinchGesture {
    #[serde(default)]
    #[doc = "X coordinate of the start of the gesture in CSS pixels."]
    pub x: JsFloat,
    #[serde(default)]
    #[doc = "Y coordinate of the start of the gesture in CSS pixels."]
    pub y: JsFloat,
    #[serde(default)]
    #[doc = "Relative scale factor after zooming (\\>1.0 zooms in, \\<1.0 zooms out)."]
    pub scale_factor: JsFloat,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Relative pointer speed in pixels per second (default: 800)."]
    pub relative_speed: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Which type of input events to be generated (default: 'default', which queries the platform\n for the preferred input type)."]
    pub gesture_source_type: Option<GestureSourceType>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Synthesizes a scroll gesture over a time period by issuing appropriate touch events."]
pub struct SynthesizeScrollGesture {
    #[serde(default)]
    #[doc = "X coordinate of the start of the gesture in CSS pixels."]
    pub x: JsFloat,
    #[serde(default)]
    #[doc = "Y coordinate of the start of the gesture in CSS pixels."]
    pub y: JsFloat,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The distance to scroll along the X axis (positive to scroll left)."]
    pub x_distance: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The distance to scroll along the Y axis (positive to scroll up)."]
    pub y_distance: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The number of additional pixels to scroll back along the X axis, in addition to the given\n distance."]
    pub x_overscroll: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The number of additional pixels to scroll back along the Y axis, in addition to the given\n distance."]
    pub y_overscroll: Option<JsFloat>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Prevent fling (default: true)."]
    pub prevent_fling: Option<bool>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Swipe speed in pixels per second (default: 800)."]
    pub speed: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Which type of input events to be generated (default: 'default', which queries the platform\n for the preferred input type)."]
    pub gesture_source_type: Option<GestureSourceType>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The number of times to repeat the gesture (default: 0)."]
    pub repeat_count: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The number of milliseconds delay between each repeat. (default: 250)."]
    pub repeat_delay_ms: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "The name of the interaction markers to generate, if not empty (default: \"\")."]
    pub interaction_marker_name: Option<String>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
#[builder(setter(into, strip_option))]
#[serde(rename_all = "camelCase")]
#[doc = "Synthesizes a tap gesture over a time period by issuing appropriate touch events."]
pub struct SynthesizeTapGesture {
    #[serde(default)]
    #[doc = "X coordinate of the start of the gesture in CSS pixels."]
    pub x: JsFloat,
    #[serde(default)]
    #[doc = "Y coordinate of the start of the gesture in CSS pixels."]
    pub y: JsFloat,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Duration between touchdown and touchup events in ms (default: 50)."]
    pub duration: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    #[doc = "Number of times to perform the tap (e.g. 2 for double tap, default: 1)."]
    pub tap_count: Option<JsUInt>,
    #[builder(default)]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[doc = "Which type of input events to be generated (default: 'default', which queries the platform\n for the preferred input type)."]
    pub gesture_source_type: Option<GestureSourceType>,
}
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Dispatches a drag event into the page."]
pub struct DispatchDragEventReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Dispatches a key event to the page."]
pub struct DispatchKeyEventReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "This method emulates inserting text that doesn't come from a key press,\n for example an emoji keyboard or an IME."]
pub struct InsertTextReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "This method sets the current candidate text for IME.\n Use imeCommitComposition to commit the final text.\n Use imeSetComposition with empty string as text to cancel composition."]
pub struct ImeSetCompositionReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Dispatches a mouse event to the page."]
pub struct DispatchMouseEventReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Dispatches a touch event to the page."]
pub struct DispatchTouchEventReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Cancels any active dragging in the page."]
pub struct CancelDraggingReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Emulates touch event from the mouse event parameters."]
pub struct EmulateTouchFromMouseEventReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Ignores input events (useful while auditing page)."]
pub struct SetIgnoreInputEventsReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Prevents default drag and drop behavior and instead emits `Input.dragIntercepted` events.\n Drag and drop behavior can be directly controlled via `Input.dispatchDragEvent`."]
pub struct SetInterceptDragsReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Synthesizes a pinch gesture over a time period by issuing appropriate touch events."]
pub struct SynthesizePinchGestureReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Synthesizes a scroll gesture over a time period by issuing appropriate touch events."]
pub struct SynthesizeScrollGestureReturnObject(pub Option<Json>);
#[allow(deprecated)]
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[doc = "Synthesizes a tap gesture over a time period by issuing appropriate touch events."]
pub struct SynthesizeTapGestureReturnObject(pub Option<Json>);
#[allow(deprecated)]
impl Method for DispatchDragEvent {
    const NAME: &'static str = "Input.dispatchDragEvent";
    type ReturnObject = DispatchDragEventReturnObject;
}
#[allow(deprecated)]
impl Method for DispatchKeyEvent {
    const NAME: &'static str = "Input.dispatchKeyEvent";
    type ReturnObject = DispatchKeyEventReturnObject;
}
#[allow(deprecated)]
impl Method for InsertText {
    const NAME: &'static str = "Input.insertText";
    type ReturnObject = InsertTextReturnObject;
}
#[allow(deprecated)]
impl Method for ImeSetComposition {
    const NAME: &'static str = "Input.imeSetComposition";
    type ReturnObject = ImeSetCompositionReturnObject;
}
#[allow(deprecated)]
impl Method for DispatchMouseEvent {
    const NAME: &'static str = "Input.dispatchMouseEvent";
    type ReturnObject = DispatchMouseEventReturnObject;
}
#[allow(deprecated)]
impl Method for DispatchTouchEvent {
    const NAME: &'static str = "Input.dispatchTouchEvent";
    type ReturnObject = DispatchTouchEventReturnObject;
}
#[allow(deprecated)]
impl Method for CancelDragging {
    const NAME: &'static str = "Input.cancelDragging";
    type ReturnObject = CancelDraggingReturnObject;
}
#[allow(deprecated)]
impl Method for EmulateTouchFromMouseEvent {
    const NAME: &'static str = "Input.emulateTouchFromMouseEvent";
    type ReturnObject = EmulateTouchFromMouseEventReturnObject;
}
#[allow(deprecated)]
impl Method for SetIgnoreInputEvents {
    const NAME: &'static str = "Input.setIgnoreInputEvents";
    type ReturnObject = SetIgnoreInputEventsReturnObject;
}
#[allow(deprecated)]
impl Method for SetInterceptDrags {
    const NAME: &'static str = "Input.setInterceptDrags";
    type ReturnObject = SetInterceptDragsReturnObject;
}
#[allow(deprecated)]
impl Method for SynthesizePinchGesture {
    const NAME: &'static str = "Input.synthesizePinchGesture";
    type ReturnObject = SynthesizePinchGestureReturnObject;
}
#[allow(deprecated)]
impl Method for SynthesizeScrollGesture {
    const NAME: &'static str = "Input.synthesizeScrollGesture";
    type ReturnObject = SynthesizeScrollGestureReturnObject;
}
#[allow(deprecated)]
impl Method for SynthesizeTapGesture {
    const NAME: &'static str = "Input.synthesizeTapGesture";
    type ReturnObject = SynthesizeTapGestureReturnObject;
}
#[allow(dead_code)]
pub mod events {
    #[allow(unused_imports)]
    use super::super::types::*;
    #[allow(unused_imports)]
    use derive_builder::Builder;
    #[allow(unused_imports)]
    use serde::{Deserialize, Serialize};
    #[allow(unused_imports)]
    use serde_json::Value as Json;
    #[allow(deprecated)]
    #[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
    pub struct DragInterceptedEvent {
        pub params: DragInterceptedEventParams,
    }
    #[allow(deprecated)]
    #[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Builder)]
    #[serde(rename_all = "camelCase")]
    pub struct DragInterceptedEventParams {
        pub data: super::DragData,
    }
}