browser-protocol 0.1.2

Generated Rust types and commands for the Chrome DevTools Protocol (browser-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
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
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
//! This domain exposes CSS read/write operations. All CSS objects (stylesheets, rules, and styles)
//! have an associated 'id' used in subsequent operations on the related object. Each object type has
//! a specific 'id' structure, and those are not interchangeable between objects of different kinds.
//! CSS objects can be loaded using the 'get*ForNode()' calls (which accept a DOM node id). A client
//! can also keep track of stylesheets via the 'styleSheetAdded'/'styleSheetRemoved' events and
//! subsequently load the required stylesheet contents using the 'getStyleSheet[Text]()' methods.
use serde::{Serialize, Deserialize};
use serde_json::Value as JsonValue;

/// Stylesheet type: "injected" for stylesheets injected via extension, "user-agent" for user-agent
/// stylesheets, "inspector" for stylesheets created by the inspector (i.e. those holding the "via
/// inspector" rules), "regular" for regular stylesheets.

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub enum StyleSheetOrigin {
    #[default]
    Injected,
    UserAgent,
    Inspector,
    Regular,
}

/// CSS rule collection for a single pseudo style.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct PseudoElementMatches {
    /// Pseudo element type.

    pub pseudoType: crate::dom::PseudoType,
    /// Pseudo element custom ident.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub pseudoIdentifier: Option<String>,
    /// Matches of CSS rules applicable to the pseudo style.

    pub matches: Vec<RuleMatch>,
}

/// CSS style coming from animations with the name of the animation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSAnimationStyle {
    /// The name of the animation.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// The style coming from the animation.

    pub style: CSSStyle,
}

/// Inherited CSS rule collection from ancestor node.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct InheritedStyleEntry {
    /// The ancestor node's inline style, if any, in the style inheritance chain.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub inlineStyle: Option<CSSStyle>,
    /// Matches of CSS rules matching the ancestor node in the style inheritance chain.

    pub matchedCSSRules: Vec<RuleMatch>,
}

/// Inherited CSS style collection for animated styles from ancestor node.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct InheritedAnimatedStyleEntry {
    /// Styles coming from the animations of the ancestor, if any, in the style inheritance chain.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub animationStyles: Option<Vec<CSSAnimationStyle>>,
    /// The style coming from the transitions of the ancestor, if any, in the style inheritance chain.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub transitionsStyle: Option<CSSStyle>,
}

/// Inherited pseudo element matches from pseudos of an ancestor node.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct InheritedPseudoElementMatches {
    /// Matches of pseudo styles from the pseudos of an ancestor node.

    pub pseudoElements: Vec<PseudoElementMatches>,
}

/// Match data for a CSS rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct RuleMatch {
    /// CSS rule in the match.

    pub rule: CSSRule,
    /// Matching selector indices in the rule's selectorList selectors (0-based).

    pub matchingSelectors: Vec<i64>,
}

/// Data for a simple selector (these are delimited by commas in a selector list).

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ProtocolValue {
    /// Value text.

    pub text: String,
    /// Value range in the underlying resource (if available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Specificity of the selector.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub specificity: Option<Specificity>,
}

/// Specificity:
/// https://drafts.csswg.org/selectors/#specificity-rules

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct Specificity {
    /// The a component, which represents the number of ID selectors.

    pub a: i64,
    /// The b component, which represents the number of class selectors, attributes selectors, and
    /// pseudo-classes.

    pub b: i64,
    /// The c component, which represents the number of type selectors and pseudo-elements.

    pub c: i64,
}

/// Selector list data.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SelectorList {
    /// Selectors in the list.

    pub selectors: Vec<ProtocolValue>,
    /// Rule selector text.

    pub text: String,
}

/// CSS stylesheet metainformation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSStyleSheetHeader {
    /// The stylesheet identifier.

    pub styleSheetId: crate::dom::StyleSheetId,
    /// Owner frame identifier.

    pub frameId: crate::page::FrameId,
    /// Stylesheet resource URL. Empty if this is a constructed stylesheet created using
    /// new CSSStyleSheet() (but non-empty if this is a constructed stylesheet imported
    /// as a CSS module script).

    pub sourceURL: String,
    /// URL of source map associated with the stylesheet (if any).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub sourceMapURL: Option<String>,
    /// Stylesheet origin.

    pub origin: StyleSheetOrigin,
    /// Stylesheet title.

    pub title: String,
    /// The backend id for the owner node of the stylesheet.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub ownerNode: Option<crate::dom::BackendNodeId>,
    /// Denotes whether the stylesheet is disabled.

    pub disabled: bool,
    /// Whether the sourceURL field value comes from the sourceURL comment.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub hasSourceURL: Option<bool>,
    /// Whether this stylesheet is created for STYLE tag by parser. This flag is not set for
    /// document.written STYLE tags.

    pub isInline: bool,
    /// Whether this stylesheet is mutable. Inline stylesheets become mutable
    /// after they have been modified via CSSOM API.
    /// '<link>' element's stylesheets become mutable only if DevTools modifies them.
    /// Constructed stylesheets (new CSSStyleSheet()) are mutable immediately after creation.

    pub isMutable: bool,
    /// True if this stylesheet is created through new CSSStyleSheet() or imported as a
    /// CSS module script.

    pub isConstructed: bool,
    /// Line offset of the stylesheet within the resource (zero based).

    pub startLine: f64,
    /// Column offset of the stylesheet within the resource (zero based).

    pub startColumn: f64,
    /// Size of the content (in characters).

    pub length: f64,
    /// Line offset of the end of the stylesheet within the resource (zero based).

    pub endLine: f64,
    /// Column offset of the end of the stylesheet within the resource (zero based).

    pub endColumn: f64,
    /// If the style sheet was loaded from a network resource, this indicates when the resource failed to load

    #[serde(skip_serializing_if = "Option::is_none")]
    pub loadingFailed: Option<bool>,
}

/// CSS rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSRule {
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Rule selector data.

    pub selectorList: SelectorList,
    /// Array of selectors from ancestor style rules, sorted by distance from the current rule.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub nestingSelectors: Option<Vec<String>>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// Associated style declaration.

    pub style: CSSStyle,
    /// The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub originTreeScopeNodeId: Option<crate::dom::BackendNodeId>,
    /// Media list array (for rules involving media queries). The array enumerates media queries
    /// starting with the innermost one, going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub media: Option<Vec<CSSMedia>>,
    /// Container query list array (for rules involving container queries).
    /// The array enumerates container queries starting with the innermost one, going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub containerQueries: Option<Vec<CSSContainerQuery>>,
    /// @supports CSS at-rule array.
    /// The array enumerates @supports at-rules starting with the innermost one, going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub supports: Option<Vec<CSSSupports>>,
    /// Cascade layer array. Contains the layer hierarchy that this rule belongs to starting
    /// with the innermost layer and going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub layers: Option<Vec<CSSLayer>>,
    /// @scope CSS at-rule array.
    /// The array enumerates @scope at-rules starting with the innermost one, going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub scopes: Option<Vec<CSSScope>>,
    /// The array keeps the types of ancestor CSSRules from the innermost going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub ruleTypes: Option<Vec<CSSRuleType>>,
    /// @starting-style CSS at-rule array.
    /// The array enumerates @starting-style at-rules starting with the innermost one, going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub startingStyles: Option<Vec<CSSStartingStyle>>,
    /// @navigation CSS at-rule array.
    /// The array enumerates @navigation at-rules starting with the innermost one, going outwards.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub navigations: Option<Vec<CSSNavigation>>,
}

/// Enum indicating the type of a CSS rule, used to represent the order of a style rule's ancestors.
/// This list only contains rule types that are collected during the ancestor rule collection.

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub enum CSSRuleType {
    #[default]
    MediaRule,
    SupportsRule,
    ContainerRule,
    LayerRule,
    ScopeRule,
    StyleRule,
    StartingStyleRule,
    NavigationRule,
}

/// CSS coverage information.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct RuleUsage {
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    pub styleSheetId: crate::dom::StyleSheetId,
    /// Offset of the start of the rule (including selector) from the beginning of the stylesheet.

    pub startOffset: f64,
    /// Offset of the end of the rule body from the beginning of the stylesheet.

    pub endOffset: f64,
    /// Indicates whether the rule was actually used by some element in the page.

    pub used: bool,
}

/// Text range within a resource. All numbers are zero-based.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SourceRange {
    /// Start line of range.

    pub startLine: i64,
    /// Start column of range (inclusive).

    pub startColumn: i64,
    /// End line of range

    pub endLine: i64,
    /// End column of range (exclusive).

    pub endColumn: i64,
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ShorthandEntry {
    /// Shorthand name.

    pub name: String,
    /// Shorthand value.

    pub value: String,
    /// Whether the property has "!important" annotation (implies 'false' if absent).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub important: Option<bool>,
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSComputedStyleProperty {
    /// Computed style property name.

    pub name: String,
    /// Computed style property value.

    pub value: String,
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ComputedStyleExtraFields {
    /// Returns whether or not this node is being rendered with base appearance,
    /// which happens when it has its appearance property set to base/base-select
    /// or it is in the subtree of an element being rendered with base appearance.

    pub isAppearanceBase: bool,
}

/// CSS style representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSStyle {
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// CSS properties in the style.

    pub cssProperties: Vec<CSSProperty>,
    /// Computed values for all shorthands found in the style.

    pub shorthandEntries: Vec<ShorthandEntry>,
    /// Style declaration text (if available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssText: Option<String>,
    /// Style declaration range in the enclosing stylesheet (if available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
}

/// CSS property declaration data.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSProperty {
    /// The property name.

    pub name: String,
    /// The property value.

    pub value: String,
    /// Whether the property has "!important" annotation (implies 'false' if absent).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub important: Option<bool>,
    /// Whether the property is implicit (implies 'false' if absent).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub implicit: Option<bool>,
    /// The full property text as specified in the style.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    /// Whether the property is understood by the browser (implies 'true' if absent).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub parsedOk: Option<bool>,
    /// Whether the property is disabled by the user (present for source-based properties only).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub disabled: Option<bool>,
    /// The entire property range in the enclosing style declaration (if available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Parsed longhand components of this property if it is a shorthand.
    /// This field will be empty if the given property is not a shorthand.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub longhandProperties: Option<Vec<CSSProperty>>,
}

/// CSS media rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSMedia {
    /// Media query text.

    pub text: String,
    /// Source of the media query: "mediaRule" if specified by a @media rule, "importRule" if
    /// specified by an @import rule, "linkedSheet" if specified by a "media" attribute in a linked
    /// stylesheet's LINK tag, "inlineSheet" if specified by a "media" attribute in an inline
    /// stylesheet's STYLE tag.

    pub source: String,
    /// URL of the document containing the media query description.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub sourceURL: Option<String>,
    /// The associated rule (@media or @import) header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Array of media queries.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub mediaList: Option<Vec<MediaQuery>>,
}

/// Media query descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct MediaQuery {
    /// Array of media query expressions.

    pub expressions: Vec<MediaQueryExpression>,
    /// Whether the media query condition is satisfied.

    pub active: bool,
}

/// Media query expression descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct MediaQueryExpression {
    /// Media query expression value.

    pub value: f64,
    /// Media query expression units.

    pub unit: String,
    /// Media query expression feature.

    pub feature: String,
    /// The associated range of the value text in the enclosing stylesheet (if available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub valueRange: Option<SourceRange>,
    /// Computed length of media query expression (if applicable).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub computedLength: Option<f64>,
}

/// CSS container query rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSContainerQuery {
    /// Container query text.

    pub text: String,
    /// The associated rule header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Optional name for the container.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    /// Optional physical axes queried for the container.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub physicalAxes: Option<crate::dom::PhysicalAxes>,
    /// Optional logical axes queried for the container.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub logicalAxes: Option<crate::dom::LogicalAxes>,
    /// true if the query contains scroll-state() queries.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub queriesScrollState: Option<bool>,
    /// true if the query contains anchored() queries.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub queriesAnchored: Option<bool>,
}

/// CSS Supports at-rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSSupports {
    /// Supports rule text.

    pub text: String,
    /// Whether the supports condition is satisfied.

    pub active: bool,
    /// The associated rule header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
}

/// CSS Navigation at-rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSNavigation {
    /// Navigation rule text.

    pub text: String,
    /// Whether the navigation condition is satisfied.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub active: Option<bool>,
    /// The associated rule header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
}

/// CSS Scope at-rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSScope {
    /// Scope rule text.

    pub text: String,
    /// The associated rule header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
}

/// CSS Layer at-rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSLayer {
    /// Layer name.

    pub text: String,
    /// The associated rule header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
}

/// CSS Starting Style at-rule descriptor.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSStartingStyle {
    /// The associated rule header range in the enclosing stylesheet (if
    /// available).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub range: Option<SourceRange>,
    /// Identifier of the stylesheet containing this object (if exists).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
}

/// CSS Layer data.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSLayerData {
    /// Layer name.

    pub name: String,
    /// Direct sub-layers

    #[serde(skip_serializing_if = "Option::is_none")]
    pub subLayers: Option<Vec<CSSLayerData>>,
    /// Layer order. The order determines the order of the layer in the cascade order.
    /// A higher number has higher priority in the cascade order.

    pub order: f64,
}

/// Information about amount of glyphs that were rendered with given font.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct PlatformFontUsage {
    /// Font's family name reported by platform.

    pub familyName: String,
    /// Font's PostScript name reported by platform.

    pub postScriptName: String,
    /// Indicates if the font was downloaded or resolved locally.

    pub isCustomFont: bool,
    /// Amount of glyphs that were rendered with this font.

    pub glyphCount: f64,
}

/// Information about font variation axes for variable fonts

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct FontVariationAxis {
    /// The font-variation-setting tag (a.k.a. "axis tag").

    pub tag: String,
    /// Human-readable variation name in the default language (normally, "en").

    pub name: String,
    /// The minimum value (inclusive) the font supports for this tag.

    pub minValue: f64,
    /// The maximum value (inclusive) the font supports for this tag.

    pub maxValue: f64,
    /// The default value.

    pub defaultValue: f64,
}

/// Properties of a web font: https://www.w3.org/TR/2008/REC-CSS2-20080411/fonts.html#font-descriptions
/// and additional information such as platformFontFamily and fontVariationAxes.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct FontFace {
    /// The font-family.

    pub fontFamily: String,
    /// The font-style.

    pub fontStyle: String,
    /// The font-variant.

    pub fontVariant: String,
    /// The font-weight.

    pub fontWeight: String,
    /// The font-stretch.

    pub fontStretch: String,
    /// The font-display.

    pub fontDisplay: String,
    /// The unicode-range.

    pub unicodeRange: String,
    /// The src.

    pub src: String,
    /// The resolved platform font family

    pub platformFontFamily: String,
    /// Available variation settings (a.k.a. "axes").

    #[serde(skip_serializing_if = "Option::is_none")]
    pub fontVariationAxes: Option<Vec<FontVariationAxis>>,
}

/// CSS try rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSTryRule {
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// Associated style declaration.

    pub style: CSSStyle,
}

/// CSS @position-try rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSPositionTryRule {
    /// The prelude dashed-ident name

    pub name: ProtocolValue,
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// Associated style declaration.

    pub style: CSSStyle,

    pub active: bool,
}

/// CSS keyframes rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSKeyframesRule {
    /// Animation name.

    pub animationName: ProtocolValue,
    /// List of keyframes.

    pub keyframes: Vec<CSSKeyframeRule>,
}

/// Representation of a custom property registration through CSS.registerProperty

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSPropertyRegistration {

    pub propertyName: String,

    #[serde(skip_serializing_if = "Option::is_none")]
    pub initialValue: Option<ProtocolValue>,

    pub inherits: bool,

    pub syntax: String,
}

/// CSS generic @rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSAtRule {
    /// Type of at-rule.

    #[serde(rename = "type")]
    pub type_: String,
    /// Subsection of font-feature-values, if this is a subsection.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub subsection: Option<String>,
    /// LINT.ThenChange(//third_party/blink/renderer/core/inspector/inspector_style_sheet.cc:FontVariantAlternatesFeatureType,//third_party/blink/renderer/core/inspector/inspector_css_agent.cc:FontVariantAlternatesFeatureType)
    /// Associated name, if applicable.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<ProtocolValue>,
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// Associated style declaration.

    pub style: CSSStyle,
}

/// CSS property at-rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSPropertyRule {
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// Associated property name.

    pub propertyName: ProtocolValue,
    /// Associated style declaration.

    pub style: CSSStyle,
}

/// CSS function argument representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSFunctionParameter {
    /// The parameter name.

    pub name: String,
    /// The parameter type.

    #[serde(rename = "type")]
    pub type_: String,
}

/// CSS function conditional block representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSFunctionConditionNode {
    /// Media query for this conditional block. Only one type of condition should be set.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub media: Option<CSSMedia>,
    /// Container query for this conditional block. Only one type of condition should be set.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub containerQueries: Option<CSSContainerQuery>,
    /// @supports CSS at-rule condition. Only one type of condition should be set.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub supports: Option<CSSSupports>,
    /// @navigation condition. Only one type of condition should be set.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub navigation: Option<CSSNavigation>,
    /// Block body.

    pub children: Vec<CSSFunctionNode>,
    /// The condition text.

    pub conditionText: String,
}

/// Section of the body of a CSS function rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSFunctionNode {
    /// A conditional block. If set, style should not be set.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub condition: Option<CSSFunctionConditionNode>,
    /// Values set by this node. If set, condition should not be set.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub style: Option<CSSStyle>,
}

/// CSS function at-rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSFunctionRule {
    /// Name of the function.

    pub name: ProtocolValue,
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// List of parameters.

    pub parameters: Vec<CSSFunctionParameter>,
    /// Function body.

    pub children: Vec<CSSFunctionNode>,
    /// The BackendNodeId of the DOM node that constitutes the origin tree scope of this rule.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub originTreeScopeNodeId: Option<crate::dom::BackendNodeId>,
}

/// CSS keyframe rule representation.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CSSKeyframeRule {
    /// The css style sheet identifier (absent for user agent stylesheet and user-specified
    /// stylesheet rules) this rule came from.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub styleSheetId: Option<crate::dom::StyleSheetId>,
    /// Parent stylesheet's origin.

    pub origin: StyleSheetOrigin,
    /// Associated key text.

    pub keyText: ProtocolValue,
    /// Associated style declaration.

    pub style: CSSStyle,
}

/// A descriptor of operation to mutate style declaration text.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct StyleDeclarationEdit {
    /// The css style sheet identifier.

    pub styleSheetId: crate::dom::StyleSheetId,
    /// The range of the style text in the enclosing stylesheet.

    pub range: SourceRange,
    /// New style text.

    pub text: String,
}

/// Inserts a new rule with the given 'ruleText' in a stylesheet with given 'styleSheetId', at the
/// position specified by 'location'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct AddRuleParams {
    /// The css style sheet identifier where a new rule should be inserted.

    pub styleSheetId: crate::dom::StyleSheetId,
    /// The text of a new rule.

    pub ruleText: String,
    /// Text position of a new rule in the target style sheet.

    pub location: SourceRange,
    /// NodeId for the DOM node in whose context custom property declarations for registered properties should be
    /// validated. If omitted, declarations in the new rule text can only be validated statically, which may produce
    /// incorrect results if the declaration contains a var() for example.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub nodeForPropertySyntaxValidation: Option<crate::dom::NodeId>,
}

/// Inserts a new rule with the given 'ruleText' in a stylesheet with given 'styleSheetId', at the
/// position specified by 'location'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct AddRuleReturns {
    /// The newly created rule.

    pub rule: CSSRule,
}

impl AddRuleParams { pub const METHOD: &'static str = "CSS.addRule"; }

impl crate::CdpCommand for AddRuleParams {
    const METHOD: &'static str = "CSS.addRule";
    type Response = AddRuleReturns;
}

/// Returns all class names from specified stylesheet.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CollectClassNamesParams {

    pub styleSheetId: crate::dom::StyleSheetId,
}

/// Returns all class names from specified stylesheet.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CollectClassNamesReturns {
    /// Class name list.

    pub classNames: Vec<String>,
}

impl CollectClassNamesParams { pub const METHOD: &'static str = "CSS.collectClassNames"; }

impl crate::CdpCommand for CollectClassNamesParams {
    const METHOD: &'static str = "CSS.collectClassNames";
    type Response = CollectClassNamesReturns;
}

/// Creates a new special "via-inspector" stylesheet in the frame with given 'frameId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CreateStyleSheetParams {
    /// Identifier of the frame where "via-inspector" stylesheet should be created.

    pub frameId: crate::page::FrameId,
    /// If true, creates a new stylesheet for every call. If false,
    /// returns a stylesheet previously created by a call with force=false
    /// for the frame's document if it exists or creates a new stylesheet
    /// (default: false).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub force: Option<bool>,
}

/// Creates a new special "via-inspector" stylesheet in the frame with given 'frameId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct CreateStyleSheetReturns {
    /// Identifier of the created "via-inspector" stylesheet.

    pub styleSheetId: crate::dom::StyleSheetId,
}

impl CreateStyleSheetParams { pub const METHOD: &'static str = "CSS.createStyleSheet"; }

impl crate::CdpCommand for CreateStyleSheetParams {
    const METHOD: &'static str = "CSS.createStyleSheet";
    type Response = CreateStyleSheetReturns;
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DisableParams {}

impl DisableParams { pub const METHOD: &'static str = "CSS.disable"; }

impl crate::CdpCommand for DisableParams {
    const METHOD: &'static str = "CSS.disable";
    type Response = crate::EmptyReturns;
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct EnableParams {}

impl EnableParams { pub const METHOD: &'static str = "CSS.enable"; }

impl crate::CdpCommand for EnableParams {
    const METHOD: &'static str = "CSS.enable";
    type Response = crate::EmptyReturns;
}

/// Ensures that the given node will have specified pseudo-classes whenever its style is computed by
/// the browser.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ForcePseudoStateParams {
    /// The element id for which to force the pseudo state.

    pub nodeId: crate::dom::NodeId,
    /// Element pseudo classes to force when computing the element's style.

    pub forcedPseudoClasses: Vec<String>,
}

impl ForcePseudoStateParams { pub const METHOD: &'static str = "CSS.forcePseudoState"; }

impl crate::CdpCommand for ForcePseudoStateParams {
    const METHOD: &'static str = "CSS.forcePseudoState";
    type Response = crate::EmptyReturns;
}

/// Ensures that the given node is in its starting-style state.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ForceStartingStyleParams {
    /// The element id for which to force the starting-style state.

    pub nodeId: crate::dom::NodeId,
    /// Boolean indicating if this is on or off.

    pub forced: bool,
}

impl ForceStartingStyleParams { pub const METHOD: &'static str = "CSS.forceStartingStyle"; }

impl crate::CdpCommand for ForceStartingStyleParams {
    const METHOD: &'static str = "CSS.forceStartingStyle";
    type Response = crate::EmptyReturns;
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetBackgroundColorsParams {
    /// Id of the node to get background colors for.

    pub nodeId: crate::dom::NodeId,
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetBackgroundColorsReturns {
    /// The range of background colors behind this element, if it contains any visible text. If no
    /// visible text is present, this will be undefined. In the case of a flat background color,
    /// this will consist of simply that color. In the case of a gradient, this will consist of each
    /// of the color stops. For anything more complicated, this will be an empty array. Images will
    /// be ignored (as if the image had failed to load).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub backgroundColors: Option<Vec<String>>,
    /// The computed font size for this node, as a CSS computed value string (e.g. '12px').

    #[serde(skip_serializing_if = "Option::is_none")]
    pub computedFontSize: Option<String>,
    /// The computed font weight for this node, as a CSS computed value string (e.g. 'normal' or
    /// '100').

    #[serde(skip_serializing_if = "Option::is_none")]
    pub computedFontWeight: Option<String>,
}

impl GetBackgroundColorsParams { pub const METHOD: &'static str = "CSS.getBackgroundColors"; }

impl crate::CdpCommand for GetBackgroundColorsParams {
    const METHOD: &'static str = "CSS.getBackgroundColors";
    type Response = GetBackgroundColorsReturns;
}

/// Returns the computed style for a DOM node identified by 'nodeId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetComputedStyleForNodeParams {

    pub nodeId: crate::dom::NodeId,
}

/// Returns the computed style for a DOM node identified by 'nodeId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetComputedStyleForNodeReturns {
    /// Computed style for the specified DOM node.

    pub computedStyle: Vec<CSSComputedStyleProperty>,
    /// A list of non-standard "extra fields" which blink stores alongside each
    /// computed style.

    pub extraFields: ComputedStyleExtraFields,
}

impl GetComputedStyleForNodeParams { pub const METHOD: &'static str = "CSS.getComputedStyleForNode"; }

impl crate::CdpCommand for GetComputedStyleForNodeParams {
    const METHOD: &'static str = "CSS.getComputedStyleForNode";
    type Response = GetComputedStyleForNodeReturns;
}

/// Resolve the specified values in the context of the provided element.
/// For example, a value of '1em' is evaluated according to the computed
/// 'font-size' of the element and a value 'calc(1px + 2px)' will be
/// resolved to '3px'.
/// If the 'propertyName' was specified the 'values' are resolved as if
/// they were property's declaration. If a value cannot be parsed according
/// to the provided property syntax, the value is parsed using combined
/// syntax as if null 'propertyName' was provided. If the value cannot be
/// resolved even then, return the provided value without any changes.
/// Note: this function currently does not resolve CSS random() function,
/// it returns unmodified random() function parts.'

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ResolveValuesParams {
    /// Cascade-dependent keywords (revert/revert-layer) do not work.

    pub values: Vec<String>,
    /// Id of the node in whose context the expression is evaluated

    pub nodeId: crate::dom::NodeId,
    /// Only longhands and custom property names are accepted.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub propertyName: Option<String>,
    /// Pseudo element type, only works for pseudo elements that generate
    /// elements in the tree, such as ::before and ::after.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub pseudoType: Option<crate::dom::PseudoType>,
    /// Pseudo element custom ident.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub pseudoIdentifier: Option<String>,
}

/// Resolve the specified values in the context of the provided element.
/// For example, a value of '1em' is evaluated according to the computed
/// 'font-size' of the element and a value 'calc(1px + 2px)' will be
/// resolved to '3px'.
/// If the 'propertyName' was specified the 'values' are resolved as if
/// they were property's declaration. If a value cannot be parsed according
/// to the provided property syntax, the value is parsed using combined
/// syntax as if null 'propertyName' was provided. If the value cannot be
/// resolved even then, return the provided value without any changes.
/// Note: this function currently does not resolve CSS random() function,
/// it returns unmodified random() function parts.'

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ResolveValuesReturns {

    pub results: Vec<String>,
}

impl ResolveValuesParams { pub const METHOD: &'static str = "CSS.resolveValues"; }

impl crate::CdpCommand for ResolveValuesParams {
    const METHOD: &'static str = "CSS.resolveValues";
    type Response = ResolveValuesReturns;
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetLonghandPropertiesParams {

    pub shorthandName: String,

    pub value: String,
}


#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetLonghandPropertiesReturns {

    pub longhandProperties: Vec<CSSProperty>,
}

impl GetLonghandPropertiesParams { pub const METHOD: &'static str = "CSS.getLonghandProperties"; }

impl crate::CdpCommand for GetLonghandPropertiesParams {
    const METHOD: &'static str = "CSS.getLonghandProperties";
    type Response = GetLonghandPropertiesReturns;
}

/// Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM
/// attributes) for a DOM node identified by 'nodeId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetInlineStylesForNodeParams {

    pub nodeId: crate::dom::NodeId,
}

/// Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM
/// attributes) for a DOM node identified by 'nodeId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetInlineStylesForNodeReturns {
    /// Inline style for the specified DOM node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub inlineStyle: Option<CSSStyle>,
    /// Attribute-defined element style (e.g. resulting from "width=20 height=100%").

    #[serde(skip_serializing_if = "Option::is_none")]
    pub attributesStyle: Option<CSSStyle>,
}

impl GetInlineStylesForNodeParams { pub const METHOD: &'static str = "CSS.getInlineStylesForNode"; }

impl crate::CdpCommand for GetInlineStylesForNodeParams {
    const METHOD: &'static str = "CSS.getInlineStylesForNode";
    type Response = GetInlineStylesForNodeReturns;
}

/// Returns the styles coming from animations & transitions
/// including the animation & transition styles coming from inheritance chain.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetAnimatedStylesForNodeParams {

    pub nodeId: crate::dom::NodeId,
}

/// Returns the styles coming from animations & transitions
/// including the animation & transition styles coming from inheritance chain.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetAnimatedStylesForNodeReturns {
    /// Styles coming from animations.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub animationStyles: Option<Vec<CSSAnimationStyle>>,
    /// Style coming from transitions.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub transitionsStyle: Option<CSSStyle>,
    /// Inherited style entries for animationsStyle and transitionsStyle from
    /// the inheritance chain of the element.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub inherited: Option<Vec<InheritedAnimatedStyleEntry>>,
}

impl GetAnimatedStylesForNodeParams { pub const METHOD: &'static str = "CSS.getAnimatedStylesForNode"; }

impl crate::CdpCommand for GetAnimatedStylesForNodeParams {
    const METHOD: &'static str = "CSS.getAnimatedStylesForNode";
    type Response = GetAnimatedStylesForNodeReturns;
}

/// Returns requested styles for a DOM node identified by 'nodeId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetMatchedStylesForNodeParams {

    pub nodeId: crate::dom::NodeId,
}

/// Returns requested styles for a DOM node identified by 'nodeId'.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetMatchedStylesForNodeReturns {
    /// Inline style for the specified DOM node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub inlineStyle: Option<CSSStyle>,
    /// Attribute-defined element style (e.g. resulting from "width=20 height=100%").

    #[serde(skip_serializing_if = "Option::is_none")]
    pub attributesStyle: Option<CSSStyle>,
    /// CSS rules matching this node, from all applicable stylesheets.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub matchedCSSRules: Option<Vec<RuleMatch>>,
    /// Pseudo style matches for this node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub pseudoElements: Option<Vec<PseudoElementMatches>>,
    /// A chain of inherited styles (from the immediate node parent up to the DOM tree root).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub inherited: Option<Vec<InheritedStyleEntry>>,
    /// A chain of inherited pseudo element styles (from the immediate node parent up to the DOM tree root).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub inheritedPseudoElements: Option<Vec<InheritedPseudoElementMatches>>,
    /// A list of CSS keyframed animations matching this node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssKeyframesRules: Option<Vec<CSSKeyframesRule>>,
    /// A list of CSS @position-try rules matching this node, based on the position-try-fallbacks property.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssPositionTryRules: Option<Vec<CSSPositionTryRule>>,
    /// Index of the active fallback in the applied position-try-fallback property,
    /// will not be set if there is no active position-try fallback.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub activePositionFallbackIndex: Option<u64>,
    /// A list of CSS at-property rules matching this node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssPropertyRules: Option<Vec<CSSPropertyRule>>,
    /// A list of CSS property registrations matching this node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssPropertyRegistrations: Option<Vec<CSSPropertyRegistration>>,
    /// A list of simple @rules matching this node or its pseudo-elements.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssAtRules: Option<Vec<CSSAtRule>>,
    /// Id of the first parent element that does not have display: contents.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub parentLayoutNodeId: Option<crate::dom::NodeId>,
    /// A list of CSS at-function rules referenced by styles of this node.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub cssFunctionRules: Option<Vec<CSSFunctionRule>>,
}

impl GetMatchedStylesForNodeParams { pub const METHOD: &'static str = "CSS.getMatchedStylesForNode"; }

impl crate::CdpCommand for GetMatchedStylesForNodeParams {
    const METHOD: &'static str = "CSS.getMatchedStylesForNode";
    type Response = GetMatchedStylesForNodeReturns;
}

/// Returns the values of the default UA-defined environment variables used in env()

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetEnvironmentVariablesReturns {

    pub environmentVariables: serde_json::Map<String, JsonValue>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetEnvironmentVariablesParams {}

impl GetEnvironmentVariablesParams { pub const METHOD: &'static str = "CSS.getEnvironmentVariables"; }

impl crate::CdpCommand for GetEnvironmentVariablesParams {
    const METHOD: &'static str = "CSS.getEnvironmentVariables";
    type Response = GetEnvironmentVariablesReturns;
}

/// Returns all media queries parsed by the rendering engine.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetMediaQueriesReturns {

    pub medias: Vec<CSSMedia>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct GetMediaQueriesParams {}

impl GetMediaQueriesParams { pub const METHOD: &'static str = "CSS.getMediaQueries"; }

impl crate::CdpCommand for GetMediaQueriesParams {
    const METHOD: &'static str = "CSS.getMediaQueries";
    type Response = GetMediaQueriesReturns;
}

/// Requests information about platform fonts which we used to render child TextNodes in the given
/// node.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetPlatformFontsForNodeParams {

    pub nodeId: crate::dom::NodeId,
}

/// Requests information about platform fonts which we used to render child TextNodes in the given
/// node.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetPlatformFontsForNodeReturns {
    /// Usage statistics for every employed platform font.

    pub fonts: Vec<PlatformFontUsage>,
}

impl GetPlatformFontsForNodeParams { pub const METHOD: &'static str = "CSS.getPlatformFontsForNode"; }

impl crate::CdpCommand for GetPlatformFontsForNodeParams {
    const METHOD: &'static str = "CSS.getPlatformFontsForNode";
    type Response = GetPlatformFontsForNodeReturns;
}

/// Returns the current textual content for a stylesheet.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetStyleSheetTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,
}

/// Returns the current textual content for a stylesheet.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetStyleSheetTextReturns {
    /// The stylesheet text.

    pub text: String,
}

impl GetStyleSheetTextParams { pub const METHOD: &'static str = "CSS.getStyleSheetText"; }

impl crate::CdpCommand for GetStyleSheetTextParams {
    const METHOD: &'static str = "CSS.getStyleSheetText";
    type Response = GetStyleSheetTextReturns;
}

/// Returns all layers parsed by the rendering engine for the tree scope of a node.
/// Given a DOM element identified by nodeId, getLayersForNode returns the root
/// layer for the nearest ancestor document or shadow root. The layer root contains
/// the full layer tree for the tree scope and their ordering.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetLayersForNodeParams {

    pub nodeId: crate::dom::NodeId,
}

/// Returns all layers parsed by the rendering engine for the tree scope of a node.
/// Given a DOM element identified by nodeId, getLayersForNode returns the root
/// layer for the nearest ancestor document or shadow root. The layer root contains
/// the full layer tree for the tree scope and their ordering.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetLayersForNodeReturns {

    pub rootLayer: CSSLayerData,
}

impl GetLayersForNodeParams { pub const METHOD: &'static str = "CSS.getLayersForNode"; }

impl crate::CdpCommand for GetLayersForNodeParams {
    const METHOD: &'static str = "CSS.getLayersForNode";
    type Response = GetLayersForNodeReturns;
}

/// Given a CSS selector text and a style sheet ID, getLocationForSelector
/// returns an array of locations of the CSS selector in the style sheet.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetLocationForSelectorParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub selectorText: String,
}

/// Given a CSS selector text and a style sheet ID, getLocationForSelector
/// returns an array of locations of the CSS selector in the style sheet.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetLocationForSelectorReturns {

    pub ranges: Vec<SourceRange>,
}

impl GetLocationForSelectorParams { pub const METHOD: &'static str = "CSS.getLocationForSelector"; }

impl crate::CdpCommand for GetLocationForSelectorParams {
    const METHOD: &'static str = "CSS.getLocationForSelector";
    type Response = GetLocationForSelectorReturns;
}

/// Starts tracking the given node for the computed style updates
/// and whenever the computed style is updated for node, it queues
/// a 'computedStyleUpdated' event with throttling.
/// There can only be 1 node tracked for computed style updates
/// so passing a new node id removes tracking from the previous node.
/// Pass 'undefined' to disable tracking.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct TrackComputedStyleUpdatesForNodeParams {

    #[serde(skip_serializing_if = "Option::is_none")]
    pub nodeId: Option<crate::dom::NodeId>,
}

impl TrackComputedStyleUpdatesForNodeParams { pub const METHOD: &'static str = "CSS.trackComputedStyleUpdatesForNode"; }

impl crate::CdpCommand for TrackComputedStyleUpdatesForNodeParams {
    const METHOD: &'static str = "CSS.trackComputedStyleUpdatesForNode";
    type Response = crate::EmptyReturns;
}

/// Starts tracking the given computed styles for updates. The specified array of properties
/// replaces the one previously specified. Pass empty array to disable tracking.
/// Use takeComputedStyleUpdates to retrieve the list of nodes that had properties modified.
/// The changes to computed style properties are only tracked for nodes pushed to the front-end
/// by the DOM agent. If no changes to the tracked properties occur after the node has been pushed
/// to the front-end, no updates will be issued for the node.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct TrackComputedStyleUpdatesParams {

    pub propertiesToTrack: Vec<CSSComputedStyleProperty>,
}

impl TrackComputedStyleUpdatesParams { pub const METHOD: &'static str = "CSS.trackComputedStyleUpdates"; }

impl crate::CdpCommand for TrackComputedStyleUpdatesParams {
    const METHOD: &'static str = "CSS.trackComputedStyleUpdates";
    type Response = crate::EmptyReturns;
}

/// Polls the next batch of computed style updates.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct TakeComputedStyleUpdatesReturns {
    /// The list of node Ids that have their tracked computed styles updated.

    pub nodeIds: Vec<crate::dom::NodeId>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct TakeComputedStyleUpdatesParams {}

impl TakeComputedStyleUpdatesParams { pub const METHOD: &'static str = "CSS.takeComputedStyleUpdates"; }

impl crate::CdpCommand for TakeComputedStyleUpdatesParams {
    const METHOD: &'static str = "CSS.takeComputedStyleUpdates";
    type Response = TakeComputedStyleUpdatesReturns;
}

/// Find a rule with the given active property for the given node and set the new value for this
/// property

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetEffectivePropertyValueForNodeParams {
    /// The element id for which to set property.

    pub nodeId: crate::dom::NodeId,

    pub propertyName: String,

    pub value: String,
}

impl SetEffectivePropertyValueForNodeParams { pub const METHOD: &'static str = "CSS.setEffectivePropertyValueForNode"; }

impl crate::CdpCommand for SetEffectivePropertyValueForNodeParams {
    const METHOD: &'static str = "CSS.setEffectivePropertyValueForNode";
    type Response = crate::EmptyReturns;
}

/// Modifies the property rule property name.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetPropertyRulePropertyNameParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub propertyName: String,
}

/// Modifies the property rule property name.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetPropertyRulePropertyNameReturns {
    /// The resulting key text after modification.

    pub propertyName: ProtocolValue,
}

impl SetPropertyRulePropertyNameParams { pub const METHOD: &'static str = "CSS.setPropertyRulePropertyName"; }

impl crate::CdpCommand for SetPropertyRulePropertyNameParams {
    const METHOD: &'static str = "CSS.setPropertyRulePropertyName";
    type Response = SetPropertyRulePropertyNameReturns;
}

/// Modifies the keyframe rule key text.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetKeyframeKeyParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub keyText: String,
}

/// Modifies the keyframe rule key text.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetKeyframeKeyReturns {
    /// The resulting key text after modification.

    pub keyText: ProtocolValue,
}

impl SetKeyframeKeyParams { pub const METHOD: &'static str = "CSS.setKeyframeKey"; }

impl crate::CdpCommand for SetKeyframeKeyParams {
    const METHOD: &'static str = "CSS.setKeyframeKey";
    type Response = SetKeyframeKeyReturns;
}

/// Modifies the rule selector.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetMediaTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub text: String,
}

/// Modifies the rule selector.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetMediaTextReturns {
    /// The resulting CSS media rule after modification.

    pub media: CSSMedia,
}

impl SetMediaTextParams { pub const METHOD: &'static str = "CSS.setMediaText"; }

impl crate::CdpCommand for SetMediaTextParams {
    const METHOD: &'static str = "CSS.setMediaText";
    type Response = SetMediaTextReturns;
}

/// Modifies the expression of a container query.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetContainerQueryTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub text: String,
}

/// Modifies the expression of a container query.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetContainerQueryTextReturns {
    /// The resulting CSS container query rule after modification.

    pub containerQuery: CSSContainerQuery,
}

impl SetContainerQueryTextParams { pub const METHOD: &'static str = "CSS.setContainerQueryText"; }

impl crate::CdpCommand for SetContainerQueryTextParams {
    const METHOD: &'static str = "CSS.setContainerQueryText";
    type Response = SetContainerQueryTextReturns;
}

/// Modifies the expression of a supports at-rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetSupportsTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub text: String,
}

/// Modifies the expression of a supports at-rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetSupportsTextReturns {
    /// The resulting CSS Supports rule after modification.

    pub supports: CSSSupports,
}

impl SetSupportsTextParams { pub const METHOD: &'static str = "CSS.setSupportsText"; }

impl crate::CdpCommand for SetSupportsTextParams {
    const METHOD: &'static str = "CSS.setSupportsText";
    type Response = SetSupportsTextReturns;
}

/// Modifies the expression of a navigation at-rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetNavigationTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub text: String,
}

/// Modifies the expression of a navigation at-rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetNavigationTextReturns {
    /// The resulting CSS Navigation rule after modification.

    pub navigation: CSSNavigation,
}

impl SetNavigationTextParams { pub const METHOD: &'static str = "CSS.setNavigationText"; }

impl crate::CdpCommand for SetNavigationTextParams {
    const METHOD: &'static str = "CSS.setNavigationText";
    type Response = SetNavigationTextReturns;
}

/// Modifies the expression of a scope at-rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetScopeTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub text: String,
}

/// Modifies the expression of a scope at-rule.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetScopeTextReturns {
    /// The resulting CSS Scope rule after modification.

    pub scope: CSSScope,
}

impl SetScopeTextParams { pub const METHOD: &'static str = "CSS.setScopeText"; }

impl crate::CdpCommand for SetScopeTextParams {
    const METHOD: &'static str = "CSS.setScopeText";
    type Response = SetScopeTextReturns;
}

/// Modifies the rule selector.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetRuleSelectorParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub range: SourceRange,

    pub selector: String,
}

/// Modifies the rule selector.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetRuleSelectorReturns {
    /// The resulting selector list after modification.

    pub selectorList: SelectorList,
}

impl SetRuleSelectorParams { pub const METHOD: &'static str = "CSS.setRuleSelector"; }

impl crate::CdpCommand for SetRuleSelectorParams {
    const METHOD: &'static str = "CSS.setRuleSelector";
    type Response = SetRuleSelectorReturns;
}

/// Sets the new stylesheet text.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetStyleSheetTextParams {

    pub styleSheetId: crate::dom::StyleSheetId,

    pub text: String,
}

/// Sets the new stylesheet text.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetStyleSheetTextReturns {
    /// URL of source map associated with script (if any).

    #[serde(skip_serializing_if = "Option::is_none")]
    pub sourceMapURL: Option<String>,
}

impl SetStyleSheetTextParams { pub const METHOD: &'static str = "CSS.setStyleSheetText"; }

impl crate::CdpCommand for SetStyleSheetTextParams {
    const METHOD: &'static str = "CSS.setStyleSheetText";
    type Response = SetStyleSheetTextReturns;
}

/// Applies specified style edits one after another in the given order.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetStyleTextsParams {

    pub edits: Vec<StyleDeclarationEdit>,
    /// NodeId for the DOM node in whose context custom property declarations for registered properties should be
    /// validated. If omitted, declarations in the new rule text can only be validated statically, which may produce
    /// incorrect results if the declaration contains a var() for example.

    #[serde(skip_serializing_if = "Option::is_none")]
    pub nodeForPropertySyntaxValidation: Option<crate::dom::NodeId>,
}

/// Applies specified style edits one after another in the given order.

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetStyleTextsReturns {
    /// The resulting styles after modification.

    pub styles: Vec<CSSStyle>,
}

impl SetStyleTextsParams { pub const METHOD: &'static str = "CSS.setStyleTexts"; }

impl crate::CdpCommand for SetStyleTextsParams {
    const METHOD: &'static str = "CSS.setStyleTexts";
    type Response = SetStyleTextsReturns;
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StartRuleUsageTrackingParams {}

impl StartRuleUsageTrackingParams { pub const METHOD: &'static str = "CSS.startRuleUsageTracking"; }

impl crate::CdpCommand for StartRuleUsageTrackingParams {
    const METHOD: &'static str = "CSS.startRuleUsageTracking";
    type Response = crate::EmptyReturns;
}

/// Stop tracking rule usage and return the list of rules that were used since last call to
/// 'takeCoverageDelta' (or since start of coverage instrumentation).

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct StopRuleUsageTrackingReturns {

    pub ruleUsage: Vec<RuleUsage>,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct StopRuleUsageTrackingParams {}

impl StopRuleUsageTrackingParams { pub const METHOD: &'static str = "CSS.stopRuleUsageTracking"; }

impl crate::CdpCommand for StopRuleUsageTrackingParams {
    const METHOD: &'static str = "CSS.stopRuleUsageTracking";
    type Response = StopRuleUsageTrackingReturns;
}

/// Obtain list of rules that became used since last call to this method (or since start of coverage
/// instrumentation).

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct TakeCoverageDeltaReturns {

    pub coverage: Vec<RuleUsage>,
    /// Monotonically increasing time, in seconds.

    pub timestamp: f64,
}

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct TakeCoverageDeltaParams {}

impl TakeCoverageDeltaParams { pub const METHOD: &'static str = "CSS.takeCoverageDelta"; }

impl crate::CdpCommand for TakeCoverageDeltaParams {
    const METHOD: &'static str = "CSS.takeCoverageDelta";
    type Response = TakeCoverageDeltaReturns;
}

/// Enables/disables rendering of local CSS fonts (enabled by default).

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SetLocalFontsEnabledParams {
    /// Whether rendering of local fonts is enabled.

    pub enabled: bool,
}

impl SetLocalFontsEnabledParams { pub const METHOD: &'static str = "CSS.setLocalFontsEnabled"; }

impl crate::CdpCommand for SetLocalFontsEnabledParams {
    const METHOD: &'static str = "CSS.setLocalFontsEnabled";
    type Response = crate::EmptyReturns;
}