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
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = KeyEvent , typescript_type = "KeyEvent")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `KeyEvent` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub type KeyEvent;
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub fn init_key_event(this: &KeyEvent, type_: &str);
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub fn init_key_event_with_can_bubble(this: &KeyEvent, type_: &str, can_bubble: bool);
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view_and_ctrl_key(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
        ctrl_key: bool,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view_and_ctrl_key_and_alt_key(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
        ctrl_key: bool,
        alt_key: bool,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view_and_ctrl_key_and_alt_key_and_shift_key(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
        ctrl_key: bool,
        alt_key: bool,
        shift_key: bool,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view_and_ctrl_key_and_alt_key_and_shift_key_and_meta_key(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
        ctrl_key: bool,
        alt_key: bool,
        shift_key: bool,
        meta_key: bool,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view_and_ctrl_key_and_alt_key_and_shift_key_and_meta_key_and_key_code(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
        ctrl_key: bool,
        alt_key: bool,
        shift_key: bool,
        meta_key: bool,
        key_code: u32,
    );
    #[cfg(feature = "Window")]
    # [wasm_bindgen (method , structural , js_class = "KeyEvent" , js_name = initKeyEvent)]
    #[doc = "The `initKeyEvent()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/KeyEvent/initKeyEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`, `Window`*"]
    pub fn init_key_event_with_can_bubble_and_cancelable_and_view_and_ctrl_key_and_alt_key_and_shift_key_and_meta_key_and_key_code_and_char_code(
        this: &KeyEvent,
        type_: &str,
        can_bubble: bool,
        cancelable: bool,
        view: Option<&Window>,
        ctrl_key: bool,
        alt_key: bool,
        shift_key: bool,
        meta_key: bool,
        key_code: u32,
        char_code: u32,
    );
}
impl KeyEvent {
    #[doc = "The `KeyEvent.DOM_VK_CANCEL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CANCEL: u32 = 3u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_HELP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_HELP: u32 = 6u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_BACK_SPACE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_BACK_SPACE: u32 = 8u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_TAB` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_TAB: u32 = 9u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CLEAR` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CLEAR: u32 = 12u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_RETURN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_RETURN: u32 = 13u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SHIFT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SHIFT: u32 = 16u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CONTROL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CONTROL: u32 = 17u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ALT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ALT: u32 = 18u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PAUSE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PAUSE: u32 = 19u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CAPS_LOCK` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CAPS_LOCK: u32 = 20u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_KANA` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_KANA: u32 = 21u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_HANGUL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_HANGUL: u32 = 21u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_EISU` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_EISU: u32 = 22u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_JUNJA` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_JUNJA: u32 = 23u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_FINAL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_FINAL: u32 = 24u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_HANJA` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_HANJA: u32 = 25u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_KANJI` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_KANJI: u32 = 25u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ESCAPE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ESCAPE: u32 = 27u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CONVERT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CONVERT: u32 = 28u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NONCONVERT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NONCONVERT: u32 = 29u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ACCEPT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ACCEPT: u32 = 30u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_MODECHANGE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_MODECHANGE: u32 = 31u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SPACE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SPACE: u32 = 32u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PAGE_UP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PAGE_UP: u32 = 33u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PAGE_DOWN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PAGE_DOWN: u32 = 34u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_END` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_END: u32 = 35u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_HOME` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_HOME: u32 = 36u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_LEFT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_LEFT: u32 = 37u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_UP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_UP: u32 = 38u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_RIGHT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_RIGHT: u32 = 39u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_DOWN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_DOWN: u32 = 40u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SELECT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SELECT: u32 = 41u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PRINT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PRINT: u32 = 42u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_EXECUTE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_EXECUTE: u32 = 43u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PRINTSCREEN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PRINTSCREEN: u32 = 44u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_INSERT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_INSERT: u32 = 45u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_DELETE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_DELETE: u32 = 46u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_0` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_0: u32 = 48u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_1` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_1: u32 = 49u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_2` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_2: u32 = 50u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_3` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_3: u32 = 51u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_4` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_4: u32 = 52u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_5` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_5: u32 = 53u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_6` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_6: u32 = 54u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_7` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_7: u32 = 55u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_8` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_8: u32 = 56u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_9` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_9: u32 = 57u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_COLON` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_COLON: u32 = 58u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SEMICOLON` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SEMICOLON: u32 = 59u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_LESS_THAN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_LESS_THAN: u32 = 60u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_EQUALS` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_EQUALS: u32 = 61u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_GREATER_THAN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_GREATER_THAN: u32 = 62u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_QUESTION_MARK` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_QUESTION_MARK: u32 = 63u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_AT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_AT: u32 = 64u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_A` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_A: u32 = 65u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_B` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_B: u32 = 66u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_C` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_C: u32 = 67u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_D` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_D: u32 = 68u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_E` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_E: u32 = 69u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F: u32 = 70u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_G` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_G: u32 = 71u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_H` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_H: u32 = 72u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_I` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_I: u32 = 73u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_J` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_J: u32 = 74u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_K` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_K: u32 = 75u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_L` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_L: u32 = 76u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_M` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_M: u32 = 77u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_N` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_N: u32 = 78u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_O` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_O: u32 = 79u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_P` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_P: u32 = 80u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_Q` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_Q: u32 = 81u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_R` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_R: u32 = 82u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_S` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_S: u32 = 83u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_T` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_T: u32 = 84u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_U` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_U: u32 = 85u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_V` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_V: u32 = 86u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_W` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_W: u32 = 87u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_X` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_X: u32 = 88u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_Y` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_Y: u32 = 89u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_Z` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_Z: u32 = 90u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN: u32 = 91u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CONTEXT_MENU` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CONTEXT_MENU: u32 = 93u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SLEEP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SLEEP: u32 = 95u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD0` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD0: u32 = 96u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD1` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD1: u32 = 97u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD2` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD2: u32 = 98u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD3` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD3: u32 = 99u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD4` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD4: u32 = 100u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD5` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD5: u32 = 101u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD6` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD6: u32 = 102u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD7` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD7: u32 = 103u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD8` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD8: u32 = 104u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUMPAD9` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUMPAD9: u32 = 105u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_MULTIPLY` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_MULTIPLY: u32 = 106u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ADD` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ADD: u32 = 107u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SEPARATOR` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SEPARATOR: u32 = 108u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SUBTRACT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SUBTRACT: u32 = 109u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_DECIMAL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_DECIMAL: u32 = 110u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_DIVIDE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_DIVIDE: u32 = 111u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F1` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F1: u32 = 112u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F2` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F2: u32 = 113u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F3` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F3: u32 = 114u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F4` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F4: u32 = 115u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F5` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F5: u32 = 116u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F6` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F6: u32 = 117u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F7` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F7: u32 = 118u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F8` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F8: u32 = 119u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F9` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F9: u32 = 120u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F10` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F10: u32 = 121u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F11` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F11: u32 = 122u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F12` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F12: u32 = 123u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F13` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F13: u32 = 124u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F14` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F14: u32 = 125u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F15` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F15: u32 = 126u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F16` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F16: u32 = 127u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F17` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F17: u32 = 128u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F18` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F18: u32 = 129u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F19` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F19: u32 = 130u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F20` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F20: u32 = 131u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F21` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F21: u32 = 132u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F22` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F22: u32 = 133u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F23` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F23: u32 = 134u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_F24` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_F24: u32 = 135u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_NUM_LOCK` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_NUM_LOCK: u32 = 144u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SCROLL_LOCK` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SCROLL_LOCK: u32 = 145u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_FJ_JISHO` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_FJ_JISHO: u32 = 146u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_FJ_MASSHOU` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_FJ_MASSHOU: u32 = 147u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_FJ_TOUROKU` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_FJ_TOUROKU: u32 = 148u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_FJ_LOYA` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_FJ_LOYA: u32 = 149u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_FJ_ROYA` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_FJ_ROYA: u32 = 150u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CIRCUMFLEX` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CIRCUMFLEX: u32 = 160u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_EXCLAMATION` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_EXCLAMATION: u32 = 161u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_DOUBLE_QUOTE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_DOUBLE_QUOTE: u32 = 162u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_HASH` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_HASH: u32 = 163u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_DOLLAR` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_DOLLAR: u32 = 164u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PERCENT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PERCENT: u32 = 165u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_AMPERSAND` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_AMPERSAND: u32 = 166u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_UNDERSCORE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_UNDERSCORE: u32 = 167u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_OPEN_PAREN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_OPEN_PAREN: u32 = 168u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CLOSE_PAREN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CLOSE_PAREN: u32 = 169u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ASTERISK` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ASTERISK: u32 = 170u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PLUS` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PLUS: u32 = 171u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PIPE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PIPE: u32 = 172u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_HYPHEN_MINUS` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_HYPHEN_MINUS: u32 = 173u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_OPEN_CURLY_BRACKET` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_OPEN_CURLY_BRACKET: u32 = 174u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CLOSE_CURLY_BRACKET` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CLOSE_CURLY_BRACKET: u32 = 175u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_TILDE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_TILDE: u32 = 176u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_VOLUME_MUTE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_VOLUME_MUTE: u32 = 181u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_VOLUME_DOWN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_VOLUME_DOWN: u32 = 182u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_VOLUME_UP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_VOLUME_UP: u32 = 183u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_COMMA` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_COMMA: u32 = 188u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PERIOD` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PERIOD: u32 = 190u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_SLASH` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_SLASH: u32 = 191u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_BACK_QUOTE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_BACK_QUOTE: u32 = 192u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_OPEN_BRACKET` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_OPEN_BRACKET: u32 = 219u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_BACK_SLASH` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_BACK_SLASH: u32 = 220u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CLOSE_BRACKET` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CLOSE_BRACKET: u32 = 221u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_QUOTE` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_QUOTE: u32 = 222u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_META` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_META: u32 = 224u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ALTGR` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ALTGR: u32 = 225u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_ICO_HELP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_ICO_HELP: u32 = 227u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_ICO_00` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_ICO_00: u32 = 228u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PROCESSKEY` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PROCESSKEY: u32 = 229u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_ICO_CLEAR` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_ICO_CLEAR: u32 = 230u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_RESET` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_RESET: u32 = 233u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_JUMP` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_JUMP: u32 = 234u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_PA1` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_PA1: u32 = 235u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_PA2` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_PA2: u32 = 236u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_PA3` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_PA3: u32 = 237u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_WSCTRL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_WSCTRL: u32 = 238u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_CUSEL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_CUSEL: u32 = 239u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_ATTN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_ATTN: u32 = 240u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_FINISH` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_FINISH: u32 = 241u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_COPY` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_COPY: u32 = 242u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_AUTO` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_AUTO: u32 = 243u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_ENLW` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_ENLW: u32 = 244u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_BACKTAB` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_BACKTAB: u32 = 245u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ATTN` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ATTN: u32 = 246u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_CRSEL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_CRSEL: u32 = 247u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_EXSEL` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_EXSEL: u32 = 248u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_EREOF` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_EREOF: u32 = 249u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PLAY` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PLAY: u32 = 250u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_ZOOM` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_ZOOM: u32 = 251u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_PA1` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_PA1: u32 = 253u64 as u32;
    #[doc = "The `KeyEvent.DOM_VK_WIN_OEM_CLEAR` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `KeyEvent`*"]
    pub const DOM_VK_WIN_OEM_CLEAR: u32 = 254u64 as u32;
}