rxls 0.1.2

Native Rust spreadsheet library: reads .xls (BIFF8/5/7), .xlsx, .xlsb, .ods and writes .xlsx. Typed cells, formulas, panic-free, no JVM/POI.
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
{
  "crate": "rxls",
  "generator": {
    "rust_toolchain": "1.85.0",
    "script": "scripts/check_public_api.py",
    "surface": "all-features rustdoc public module indexes"
  },
  "items": [
    {
      "declaration": "pub struct Alignment { pub horizontal: Option<HAlign>, pub vertical: Option<VAlign>, pub wrap: bool, pub rotation: i16, pub indent: u8, pub shrink_to_fit: bool, }",
      "inherent_items": [
        "pub fn new() -> Self",
        "pub fn with_horizontal(self, horizontal: HAlign) -> Self",
        "pub fn with_indent(self, level: u8) -> Self",
        "pub fn with_rotation(self, degrees: i16) -> Self",
        "pub fn with_shrink_to_fit(self) -> Self",
        "pub fn with_vertical(self, vertical: VAlign) -> Self",
        "pub fn with_wrap(self, wrap: bool) -> Self",
        "pub fn wrapped(self) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Alignment",
      "trait_implementations": [
        "impl Clone for Alignment",
        "impl Debug for Alignment",
        "impl Default for Alignment",
        "impl Eq for Alignment",
        "impl Hash for Alignment",
        "impl PartialEq for Alignment",
        "impl StructuralPartialEq for Alignment"
      ]
    },
    {
      "declaration": "pub struct Border { pub left: BorderStyle, pub right: BorderStyle, pub top: BorderStyle, pub bottom: BorderStyle, pub color: Option<Color>, pub left_color: Option<Color>, pub right_color: Option<Color>, pub top_color: Option<Color>, pub bottom_color: Option<Color>, }",
      "inherent_items": [
        "pub fn new() -> Self",
        "pub fn with_all(self, style: BorderStyle) -> Self",
        "pub fn with_bottom(self, style: BorderStyle) -> Self",
        "pub fn with_bottom_color(self, color: impl Into<Color>) -> Self",
        "pub fn with_color(self, color: impl Into<Color>) -> Self",
        "pub fn with_left(self, style: BorderStyle) -> Self",
        "pub fn with_left_color(self, color: impl Into<Color>) -> Self",
        "pub fn with_right(self, style: BorderStyle) -> Self",
        "pub fn with_right_color(self, color: impl Into<Color>) -> Self",
        "pub fn with_top(self, style: BorderStyle) -> Self",
        "pub fn with_top_color(self, color: impl Into<Color>) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Border",
      "trait_implementations": [
        "impl Clone for Border",
        "impl Debug for Border",
        "impl Default for Border",
        "impl Eq for Border",
        "impl Hash for Border",
        "impl PartialEq for Border",
        "impl StructuralPartialEq for Border"
      ]
    },
    {
      "declaration": "pub enum BorderStyle { None, Thin, Medium, Thick, Double, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::BorderStyle",
      "trait_implementations": [
        "impl Clone for BorderStyle",
        "impl Copy for BorderStyle",
        "impl Debug for BorderStyle",
        "impl Default for BorderStyle",
        "impl Eq for BorderStyle",
        "impl Hash for BorderStyle",
        "impl PartialEq for BorderStyle",
        "impl StructuralPartialEq for BorderStyle"
      ]
    },
    {
      "declaration": "pub enum Cell { Text(String), Number(f64), Date(f64), Bool(bool), Error(String), Formula { formula: String, cached: Box<Cell>, }, }",
      "inherent_items": [
        "pub fn as_date(&self, date1904: bool) -> Option<NaiveDate>",
        "pub fn as_datetime(&self, date1904: bool) -> Option<ExcelDateTime>",
        "pub fn as_duration(&self) -> Option<Duration>",
        "pub fn as_f64(&self) -> Option<f64>",
        "pub fn as_i64(&self) -> Option<i64>",
        "pub fn as_naive_date(&self, date1904: bool) -> Option<NaiveDate>",
        "pub fn as_naive_datetime(&self, date1904: bool) -> Option<NaiveDateTime>",
        "pub fn as_naive_time(&self, date1904: bool) -> Option<NaiveTime>",
        "pub fn as_string(&self) -> Option<String>",
        "pub fn as_time(&self, date1904: bool) -> Option<NaiveTime>",
        "pub fn boolean(value: bool) -> Self",
        "pub fn cached_value(&self) -> Option<&Cell>",
        "pub fn date(serial: f64) -> Self",
        "pub fn date_time(serial: f64) -> Self",
        "pub fn error(error: CellErrorType) -> Self",
        "pub fn float(value: impl Into<f64>) -> Self",
        "pub fn formula(formula: impl Into<String>, cached: impl Into<Cell>) -> Self",
        "pub fn get_bool(&self) -> Option<bool>",
        "pub fn get_datetime(&self) -> Option<f64>",
        "pub fn get_datetime_iso(&self) -> Option<&str>",
        "pub fn get_duration_iso(&self) -> Option<&str>",
        "pub fn get_error(&self) -> Option<&str>",
        "pub fn get_error_type(&self) -> Option<CellErrorType>",
        "pub fn get_float(&self) -> Option<f64>",
        "pub fn get_formula(&self) -> Option<&str>",
        "pub fn get_int(&self) -> Option<i64>",
        "pub fn get_string(&self) -> Option<&str>",
        "pub fn int(value: impl Into<i64>) -> Self",
        "pub fn is_bool(&self) -> bool",
        "pub fn is_datetime(&self) -> bool",
        "pub fn is_datetime_iso(&self) -> bool",
        "pub fn is_duration_iso(&self) -> bool",
        "pub fn is_empty(&self) -> bool",
        "pub fn is_error(&self) -> bool",
        "pub fn is_float(&self) -> bool",
        "pub fn is_formula(&self) -> bool",
        "pub fn is_int(&self) -> bool",
        "pub fn is_string(&self) -> bool",
        "pub fn string(value: impl Into<String>) -> Self",
        "pub fn text(value: impl Into<String>) -> Self"
      ],
      "kind": "enum",
      "path": "rxls::Cell",
      "trait_implementations": [
        "impl Clone for Cell",
        "impl DataType for Cell",
        "impl Debug for Cell",
        "impl Display for Cell",
        "impl From<&Cell> for Cell",
        "impl From<&str> for Cell",
        "impl From<CellErrorType> for Cell",
        "impl From<String> for Cell",
        "impl From<bool> for Cell",
        "impl From<f32> for Cell",
        "impl From<f64> for Cell",
        "impl From<i128> for Cell",
        "impl From<i16> for Cell",
        "impl From<i32> for Cell",
        "impl From<i64> for Cell",
        "impl From<i8> for Cell",
        "impl From<isize> for Cell",
        "impl From<u128> for Cell",
        "impl From<u16> for Cell",
        "impl From<u32> for Cell",
        "impl From<u64> for Cell",
        "impl From<u8> for Cell",
        "impl From<usize> for Cell",
        "impl PartialEq for Cell",
        "impl PartialEq<&String> for Cell",
        "impl PartialEq<&str> for Cell",
        "impl PartialEq<Cell> for &String",
        "impl PartialEq<Cell> for &str",
        "impl PartialEq<Cell> for String",
        "impl PartialEq<Cell> for bool",
        "impl PartialEq<Cell> for f32",
        "impl PartialEq<Cell> for f64",
        "impl PartialEq<Cell> for i128",
        "impl PartialEq<Cell> for i16",
        "impl PartialEq<Cell> for i32",
        "impl PartialEq<Cell> for i64",
        "impl PartialEq<Cell> for i8",
        "impl PartialEq<Cell> for isize",
        "impl PartialEq<Cell> for u128",
        "impl PartialEq<Cell> for u16",
        "impl PartialEq<Cell> for u32",
        "impl PartialEq<Cell> for u64",
        "impl PartialEq<Cell> for u8",
        "impl PartialEq<Cell> for usize",
        "impl PartialEq<String> for Cell",
        "impl PartialEq<bool> for Cell",
        "impl PartialEq<f32> for Cell",
        "impl PartialEq<f64> for Cell",
        "impl PartialEq<i128> for Cell",
        "impl PartialEq<i16> for Cell",
        "impl PartialEq<i32> for Cell",
        "impl PartialEq<i64> for Cell",
        "impl PartialEq<i8> for Cell",
        "impl PartialEq<isize> for Cell",
        "impl PartialEq<str> for Cell",
        "impl PartialEq<u128> for Cell",
        "impl PartialEq<u16> for Cell",
        "impl PartialEq<u32> for Cell",
        "impl PartialEq<u64> for Cell",
        "impl PartialEq<u8> for Cell",
        "impl PartialEq<usize> for Cell",
        "impl StructuralPartialEq for Cell",
        "impl<'de> Deserialize<'de> for Cell"
      ]
    },
    {
      "declaration": "pub enum CellErrorType { Div0, NA, Name, Null, Num, Ref, Value, GettingData, }",
      "inherent_items": [
        "pub fn as_str(self) -> &'static str",
        "pub fn from_excel_error(error: &str) -> Option<Self>"
      ],
      "kind": "enum",
      "path": "rxls::CellErrorType",
      "trait_implementations": [
        "impl Clone for CellErrorType",
        "impl Copy for CellErrorType",
        "impl Debug for CellErrorType",
        "impl Display for CellErrorType",
        "impl Eq for CellErrorType",
        "impl From<CellErrorType> for Cell",
        "impl Hash for CellErrorType",
        "impl PartialEq for CellErrorType",
        "impl StructuralPartialEq for CellErrorType"
      ]
    },
    {
      "declaration": "pub struct CellProtection { pub locked: Option<bool>, pub hidden: bool, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::CellProtection",
      "trait_implementations": [
        "impl Clone for CellProtection",
        "impl Debug for CellProtection",
        "impl Default for CellProtection",
        "impl Eq for CellProtection",
        "impl Hash for CellProtection",
        "impl PartialEq for CellProtection",
        "impl StructuralPartialEq for CellProtection"
      ]
    },
    {
      "declaration": "pub struct CellStyle { pub font: Option<Font>, pub fill: Option<Color>, pub pattern_fill: Option<Fill>, pub border: Option<Border>, pub num_fmt: Option<String>, pub align: Option<Alignment>, pub protection: Option<CellProtection>, }",
      "inherent_items": [
        "pub fn align(self, h: HAlign) -> Self",
        "pub fn alignment(self, alignment: Alignment) -> Self",
        "pub fn background_color(self, color: impl Into<Color>) -> Self",
        "pub fn bold(self) -> Self",
        "pub fn border(self, b: Border) -> Self",
        "pub fn border_bottom(self, style: FormatBorder) -> Self",
        "pub fn border_bottom_color(self, color: impl Into<Color>) -> Self",
        "pub fn border_left(self, style: FormatBorder) -> Self",
        "pub fn border_left_color(self, color: impl Into<Color>) -> Self",
        "pub fn border_right(self, style: FormatBorder) -> Self",
        "pub fn border_right_color(self, color: impl Into<Color>) -> Self",
        "pub fn border_top(self, style: FormatBorder) -> Self",
        "pub fn border_top_color(self, color: impl Into<Color>) -> Self",
        "pub fn color(self, color: impl Into<Color>) -> Self",
        "pub fn fill(self, color: impl Into<Color>) -> Self",
        "pub fn font_name(self, name: impl AsRef<str>) -> Self",
        "pub fn font_script(self, script: FormatScript) -> Self",
        "pub fn foreground_color(self, color: impl Into<Color>) -> Self",
        "pub fn hidden(self) -> Self",
        "pub fn indent(self, level: u8) -> Self",
        "pub fn italic(self) -> Self",
        "pub fn locked(self) -> Self",
        "pub fn merge(&self, overlay: &CellStyle) -> Self",
        "pub fn new() -> Self",
        "pub fn num_fmt(self, code: impl AsRef<str>) -> Self",
        "pub fn pattern(self, pattern: FormatPattern) -> Self",
        "pub fn pattern_fill(self, fill: Fill) -> Self",
        "pub fn set_align(self, h: FormatAlign) -> Self",
        "pub fn set_alignment(self, alignment: Alignment) -> Self",
        "pub fn set_background_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_bg_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_bold(self) -> Self",
        "pub fn set_border(self, style: FormatBorder) -> Self",
        "pub fn set_border_bottom(self, style: FormatBorder) -> Self",
        "pub fn set_border_bottom_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_left(self, style: FormatBorder) -> Self",
        "pub fn set_border_left_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_right(self, style: FormatBorder) -> Self",
        "pub fn set_border_right_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_top(self, style: FormatBorder) -> Self",
        "pub fn set_border_top_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_font_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_font_name(self, name: impl AsRef<str>) -> Self",
        "pub fn set_font_script(self, script: FormatScript) -> Self",
        "pub fn set_font_size(self, points: u16) -> Self",
        "pub fn set_font_strikethrough(self) -> Self",
        "pub fn set_foreground_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_hidden(self) -> Self",
        "pub fn set_indent(self, level: u8) -> Self",
        "pub fn set_italic(self) -> Self",
        "pub fn set_locked(self) -> Self",
        "pub fn set_num_format(self, code: impl AsRef<str>) -> Self",
        "pub fn set_pattern(self, pattern: FormatPattern) -> Self",
        "pub fn set_pattern_fill(self, fill: Fill) -> Self",
        "pub fn set_shrink_to_fit(self) -> Self",
        "pub fn set_strikethrough(self) -> Self",
        "pub fn set_text_rotation(self, degrees: i16) -> Self",
        "pub fn set_text_wrap(self) -> Self",
        "pub fn set_underline(self) -> Self",
        "pub fn set_unlocked(self) -> Self",
        "pub fn set_valign(self, v: VAlign) -> Self",
        "pub fn shrink_to_fit(self) -> Self",
        "pub fn size(self, points: u16) -> Self",
        "pub fn strikethrough(self) -> Self",
        "pub fn text_rotation(self, degrees: i16) -> Self",
        "pub fn underline(self) -> Self",
        "pub fn unlocked(self) -> Self",
        "pub fn valign(self, v: VAlign) -> Self",
        "pub fn wrap(self) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::CellStyle",
      "trait_implementations": [
        "impl Clone for CellStyle",
        "impl Debug for CellStyle",
        "impl Default for CellStyle",
        "impl Eq for CellStyle",
        "impl From<CellStyle> for Format",
        "impl From<Format> for CellStyle",
        "impl Hash for CellStyle",
        "impl PartialEq for CellStyle",
        "impl StructuralPartialEq for CellStyle"
      ]
    },
    {
      "declaration": "pub enum CfRule { CellIs { op: DvOp, formula1: String, formula2: Option<String>, fill: Color, }, ColorScale2 { min: Color, max: Color, }, ColorScale3 { min: Color, mid: Color, max: Color, }, DataBar { color: Color, }, TopBottom { rank: u32, bottom: bool, percent: bool, fill: Color, }, AboveAverage { below: bool, fill: Color, }, DuplicateValues { unique: bool, fill: Color, }, Expression { formula: String, fill: Color, }, }",
      "inherent_items": [
        "pub fn above_average(below: bool, fill: impl Into<Color>) -> Self",
        "pub fn cell_is( op: DvOp, formula1: impl AsRef<str>, formula2: Option<impl AsRef<str>>, fill: impl Into<Color>, ) -> Self",
        "pub fn color_scale2(min: impl Into<Color>, max: impl Into<Color>) -> Self",
        "pub fn color_scale3( min: impl Into<Color>, mid: impl Into<Color>, max: impl Into<Color>, ) -> Self",
        "pub fn data_bar(color: impl Into<Color>) -> Self",
        "pub fn duplicate_values(unique: bool, fill: impl Into<Color>) -> Self",
        "pub fn expression(formula: impl AsRef<str>, fill: impl Into<Color>) -> Self",
        "pub fn top_bottom( rank: u32, bottom: bool, percent: bool, fill: impl Into<Color>, ) -> Self"
      ],
      "kind": "enum",
      "path": "rxls::CfRule",
      "trait_implementations": [
        "impl Clone for CfRule",
        "impl Debug for CfRule",
        "impl Eq for CfRule",
        "impl PartialEq for CfRule",
        "impl StructuralPartialEq for CfRule"
      ]
    },
    {
      "declaration": "pub struct Chart { pub kind: ChartKind, pub title: Option<String>, pub series: Vec<Series>, pub legend: bool, pub data_labels: bool, pub x_axis_title: Option<String>, pub y_axis_title: Option<String>, pub from: (u32, u16), pub to: (u32, u16), }",
      "inherent_items": [
        "pub fn add_series(self, series: Series) -> Self",
        "pub fn new(kind: ChartKind, from: (u32, u16), to: (u32, u16)) -> Self",
        "pub fn with_data_labels(self, show: bool) -> Self",
        "pub fn with_legend(self, show: bool) -> Self",
        "pub fn with_series<I>(self, series: I) -> Selfwhere I: IntoIterator<Item = Series>,",
        "pub fn with_title(self, title: impl AsRef<str>) -> Self",
        "pub fn with_x_axis_title(self, title: impl AsRef<str>) -> Self",
        "pub fn with_y_axis_title(self, title: impl AsRef<str>) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Chart",
      "trait_implementations": [
        "impl Clone for Chart",
        "impl Debug for Chart",
        "impl Eq for Chart",
        "impl PartialEq for Chart",
        "impl StructuralPartialEq for Chart"
      ]
    },
    {
      "declaration": "pub enum ChartKind { Bar, Line, Pie, Scatter, Area, Doughnut, Radar, Bubble, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::ChartKind",
      "trait_implementations": [
        "impl Clone for ChartKind",
        "impl Copy for ChartKind",
        "impl Debug for ChartKind",
        "impl Eq for ChartKind",
        "impl PartialEq for ChartKind",
        "impl StructuralPartialEq for ChartKind"
      ]
    },
    {
      "declaration": "pub struct Color(pub [u8; 3]);",
      "inherent_items": [
        "pub const fn as_rgb(self) -> [u8; 3]",
        "pub const fn rgb(red: u8, green: u8, blue: u8) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Color",
      "trait_implementations": [
        "impl Clone for Color",
        "impl Copy for Color",
        "impl Debug for Color",
        "impl Default for Color",
        "impl Eq for Color",
        "impl From<[u8; 3]> for Color",
        "impl Hash for Color",
        "impl PartialEq for Color",
        "impl StructuralPartialEq for Color"
      ]
    },
    {
      "declaration": "pub struct Comment { pub row: u32, pub col: u16, pub text: String, pub author: Option<String>, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::Comment",
      "trait_implementations": [
        "impl Clone for Comment",
        "impl Debug for Comment",
        "impl Eq for Comment",
        "impl PartialEq for Comment",
        "impl StructuralPartialEq for Comment"
      ]
    },
    {
      "declaration": "pub struct CommentAuthor(/* private fields */);",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::CommentAuthor",
      "trait_implementations": [
        "impl Clone for CommentAuthor",
        "impl Debug for CommentAuthor",
        "impl Eq for CommentAuthor",
        "impl From<&String> for CommentAuthor",
        "impl From<&str> for CommentAuthor",
        "impl From<Option<&str>> for CommentAuthor",
        "impl From<String> for CommentAuthor",
        "impl PartialEq for CommentAuthor",
        "impl StructuralPartialEq for CommentAuthor"
      ]
    },
    {
      "declaration": "pub struct CondFormat { pub sqref: (u32, u16, u32, u16), pub rule: CfRule, }",
      "inherent_items": [
        "pub fn new(sqref: (u32, u16, u32, u16), rule: CfRule) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::CondFormat",
      "trait_implementations": [
        "impl Clone for CondFormat",
        "impl Debug for CondFormat",
        "impl Eq for CondFormat",
        "impl PartialEq for CondFormat",
        "impl StructuralPartialEq for CondFormat"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum CsvExportError { InvalidDelimiter(char), OutputTooLarge { limit: usize, }, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::CsvExportError",
      "trait_implementations": [
        "impl Clone for CsvExportError",
        "impl Debug for CsvExportError",
        "impl Display for CsvExportError",
        "impl Eq for CsvExportError",
        "impl Error for CsvExportError",
        "impl PartialEq for CsvExportError",
        "impl StructuralPartialEq for CsvExportError"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum CsvFormulaPolicy { Preserve, Escape, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::CsvFormulaPolicy",
      "trait_implementations": [
        "impl Clone for CsvFormulaPolicy",
        "impl Copy for CsvFormulaPolicy",
        "impl Debug for CsvFormulaPolicy",
        "impl Eq for CsvFormulaPolicy",
        "impl PartialEq for CsvFormulaPolicy",
        "impl StructuralPartialEq for CsvFormulaPolicy"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum CsvNewline { Lf, CrLf, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::CsvNewline",
      "trait_implementations": [
        "impl Clone for CsvNewline",
        "impl Copy for CsvNewline",
        "impl Debug for CsvNewline",
        "impl Eq for CsvNewline",
        "impl PartialEq for CsvNewline",
        "impl StructuralPartialEq for CsvNewline"
      ]
    },
    {
      "declaration": "pub struct CsvOptions { pub delimiter: char, pub newline: CsvNewline, pub bom: bool, pub formula_policy: CsvFormulaPolicy, pub max_output_bytes: usize, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::CsvOptions",
      "trait_implementations": [
        "impl Clone for CsvOptions",
        "impl Copy for CsvOptions",
        "impl Debug for CsvOptions",
        "impl Default for CsvOptions",
        "impl Eq for CsvOptions",
        "impl PartialEq for CsvOptions",
        "impl StructuralPartialEq for CsvOptions"
      ]
    },
    {
      "declaration": "pub const DEFAULT_EXPORT_MAX_BYTES: usize = _; // 268_435_456usize",
      "inherent_items": [],
      "kind": "constant",
      "path": "rxls::DEFAULT_EXPORT_MAX_BYTES",
      "trait_implementations": []
    },
    {
      "declaration": "pub type Data = Cell;",
      "inherent_items": [],
      "kind": "type",
      "path": "rxls::Data",
      "trait_implementations": []
    },
    {
      "declaration": "pub type DataRef<'a> = &'a Cell;",
      "inherent_items": [],
      "kind": "type",
      "path": "rxls::DataRef",
      "trait_implementations": []
    },
    {
      "declaration": "pub trait DataType { // Required methods fn is_empty(&self) -> bool; fn is_int(&self) -> bool; fn is_float(&self) -> bool; fn is_bool(&self) -> bool; fn is_string(&self) -> bool; fn is_error(&self) -> bool; fn is_datetime(&self) -> bool; fn is_datetime_iso(&self) -> bool; fn is_duration_iso(&self) -> bool; fn is_formula(&self) -> bool; fn get_int(&self) -> Option<i64>; fn get_float(&self) -> Option<f64>; fn get_bool(&self) -> Option<bool>; fn get_string(&self) -> Option<&str>; fn get_error(&self) -> Option<&str>; fn get_error_type(&self) -> Option<CellErrorType>; fn get_datetime(&self) -> Option<f64>; fn get_formula(&self) -> Option<&str>; fn get_datetime_iso(&self) -> Option<&str>; fn get_duration_iso(&self) -> Option<&str>; fn cached_value(&self) -> Option<&Cell>; fn as_string(&self) -> Option<String>; fn as_i64(&self) -> Option<i64>; fn as_f64(&self) -> Option<f64>; fn as_datetime(&self, date1904: bool) -> Option<ExcelDateTime>; fn as_naive_datetime(&self, date1904: bool) -> Option<NaiveDateTime>; fn as_naive_date(&self, date1904: bool) -> Option<NaiveDate>; fn as_date(&self, date1904: bool) -> Option<NaiveDate>; fn as_naive_time(&self, date1904: bool) -> Option<NaiveTime>; fn as_time(&self, date1904: bool) -> Option<NaiveTime>; fn as_duration(&self) -> Option<Duration>; }",
      "inherent_items": [],
      "kind": "trait",
      "path": "rxls::DataType",
      "trait_implementations": []
    },
    {
      "declaration": "pub struct DataValidation { pub sqref: (u32, u16, u32, u16), pub kind: DvKind, pub operator: DvOp, pub formula1: String, pub formula2: Option<String>, pub allow_blank: bool, pub show_input_message: bool, pub show_error_message: bool, pub prompt: Option<(String, String)>, pub error: Option<(String, String)>, }",
      "inherent_items": [
        "pub fn list(sqref: (u32, u16, u32, u16), source: impl AsRef<str>) -> Self",
        "pub fn new( sqref: (u32, u16, u32, u16), kind: DvKind, operator: DvOp, formula1: impl AsRef<str>, ) -> Self",
        "pub fn with_allow_blank(self, allow_blank: bool) -> Self",
        "pub fn with_error( self, title: impl AsRef<str>, message: impl AsRef<str>, ) -> Self",
        "pub fn with_formula2(self, formula2: impl AsRef<str>) -> Self",
        "pub fn with_prompt( self, title: impl AsRef<str>, message: impl AsRef<str>, ) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::DataValidation",
      "trait_implementations": [
        "impl Clone for DataValidation",
        "impl Debug for DataValidation",
        "impl Eq for DataValidation",
        "impl PartialEq for DataValidation",
        "impl StructuralPartialEq for DataValidation"
      ]
    },
    {
      "declaration": "pub type DeError = Error;",
      "inherent_items": [],
      "kind": "type",
      "path": "rxls::DeError",
      "trait_implementations": []
    },
    {
      "declaration": "pub struct Dimensions { pub start: (u32, u32), pub end: (u32, u32), }",
      "inherent_items": [
        "pub fn contains(&self, row: u32, col: u32) -> bool",
        "pub fn from_range_tuple(range: (u32, u16, u32, u16)) -> Self",
        "pub fn is_empty(&self) -> bool",
        "pub fn len(&self) -> u64",
        "pub fn new(start: (u32, u32), end: (u32, u32)) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Dimensions",
      "trait_implementations": [
        "impl Clone for Dimensions",
        "impl Copy for Dimensions",
        "impl Debug for Dimensions",
        "impl Default for Dimensions",
        "impl Eq for Dimensions",
        "impl From<(u32, u16, u32, u16)> for Dimensions",
        "impl Hash for Dimensions",
        "impl Ord for Dimensions",
        "impl PartialEq for Dimensions",
        "impl PartialOrd for Dimensions",
        "impl StructuralPartialEq for Dimensions"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub struct DocProperties { pub title: Option<String>, pub subject: Option<String>, pub creator: Option<String>, pub keywords: Option<String>, pub description: Option<String>, pub last_modified_by: Option<String>, pub company: Option<String>, pub created: Option<String>, }",
      "inherent_items": [
        "pub fn new() -> Self",
        "pub fn with_company(self, company: impl AsRef<str>) -> Self",
        "pub fn with_created(self, created: impl AsRef<str>) -> Self",
        "pub fn with_creator(self, creator: impl AsRef<str>) -> Self",
        "pub fn with_description(self, description: impl AsRef<str>) -> Self",
        "pub fn with_keywords(self, keywords: impl AsRef<str>) -> Self",
        "pub fn with_last_modified_by(self, last_modified_by: impl AsRef<str>) -> Self",
        "pub fn with_subject(self, subject: impl AsRef<str>) -> Self",
        "pub fn with_title(self, title: impl AsRef<str>) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::DocProperties",
      "trait_implementations": [
        "impl Clone for DocProperties",
        "impl Debug for DocProperties",
        "impl Default for DocProperties",
        "impl Eq for DocProperties",
        "impl PartialEq for DocProperties",
        "impl StructuralPartialEq for DocProperties"
      ]
    },
    {
      "declaration": "pub enum DvKind { List, Whole, Decimal, Date, Time, TextLength, Custom, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::DvKind",
      "trait_implementations": [
        "impl Clone for DvKind",
        "impl Copy for DvKind",
        "impl Debug for DvKind",
        "impl Eq for DvKind",
        "impl PartialEq for DvKind",
        "impl StructuralPartialEq for DvKind"
      ]
    },
    {
      "declaration": "pub enum DvOp { Between, NotBetween, Equal, NotEqual, GreaterThan, LessThan, GreaterThanOrEqual, LessThanOrEqual, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::DvOp",
      "trait_implementations": [
        "impl Clone for DvOp",
        "impl Copy for DvOp",
        "impl Debug for DvOp",
        "impl Eq for DvOp",
        "impl PartialEq for DvOp",
        "impl StructuralPartialEq for DvOp"
      ]
    },
    {
      "declaration": "pub enum EditCapability { ReadWrite, ReadOnly(EditReadOnlyReason), }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::EditCapability",
      "trait_implementations": [
        "impl Clone for EditCapability",
        "impl Debug for EditCapability",
        "impl Eq for EditCapability",
        "impl PartialEq for EditCapability",
        "impl StructuralPartialEq for EditCapability"
      ]
    },
    {
      "declaration": "pub enum EditReadOnlyReason { LegacyBiff, BinaryPackage, OpenDocument, PackageMetadataLoss, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::EditReadOnlyReason",
      "trait_implementations": [
        "impl Clone for EditReadOnlyReason",
        "impl Debug for EditReadOnlyReason",
        "impl Eq for EditReadOnlyReason",
        "impl PartialEq for EditReadOnlyReason",
        "impl StructuralPartialEq for EditReadOnlyReason"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum Error { NotOle2, LegacyBiff, Cfb(Error), InvalidCfb(&'static str), MissingWorkbook, Biff(&'static str), Zip(&'static str), UnsupportedCompression { part: String, method: u16, }, Xml(&'static str), Encrypted, EncryptedPackage, EncryptedOpenDocument, NoText, SheetOutOfRange, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::Error",
      "trait_implementations": [
        "impl Debug for Error",
        "impl Display for Error",
        "impl Error for Error",
        "impl From<Error> for Error"
      ]
    },
    {
      "declaration": "pub struct ExcelDateTime { pub year: i64, pub month: u32, pub day: u32, pub hour: u32, pub minute: u32, pub second: u32, }",
      "inherent_items": [
        "pub fn date_string(&self) -> String",
        "pub fn time_string(&self) -> String",
        "pub fn to_naive_datetime(self) -> Option<NaiveDateTime>"
      ],
      "kind": "struct",
      "path": "rxls::ExcelDateTime",
      "trait_implementations": [
        "impl Clone for ExcelDateTime",
        "impl Copy for ExcelDateTime",
        "impl Debug for ExcelDateTime",
        "impl Display for ExcelDateTime",
        "impl Eq for ExcelDateTime",
        "impl Hash for ExcelDateTime",
        "impl PartialEq for ExcelDateTime",
        "impl StructuralPartialEq for ExcelDateTime"
      ]
    },
    {
      "declaration": "pub struct Fill { pub pattern: FormatPattern, pub background: Option<Color>, pub foreground: Option<Color>, }",
      "inherent_items": [
        "pub fn new() -> Self",
        "pub fn solid(color: impl Into<Color>) -> Self",
        "pub fn with_background(self, color: impl Into<Color>) -> Self",
        "pub fn with_foreground(self, color: impl Into<Color>) -> Self",
        "pub fn with_pattern(self, pattern: FormatPattern) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Fill",
      "trait_implementations": [
        "impl Clone for Fill",
        "impl Copy for Fill",
        "impl Debug for Fill",
        "impl Default for Fill",
        "impl Eq for Fill",
        "impl Hash for Fill",
        "impl PartialEq for Fill",
        "impl StructuralPartialEq for Fill"
      ]
    },
    {
      "declaration": "pub struct Font { pub name: Option<String>, pub size_pt: Option<u16>, pub color: Option<Color>, pub bold: bool, pub italic: bool, pub underline: bool, pub strikethrough: bool, pub script: FormatScript, }",
      "inherent_items": [
        "pub fn bold(self) -> Self",
        "pub fn italic(self) -> Self",
        "pub fn new() -> Self",
        "pub fn strikethrough(self) -> Self",
        "pub fn underline(self) -> Self",
        "pub fn with_color(self, color: impl Into<Color>) -> Self",
        "pub fn with_name(self, name: impl AsRef<str>) -> Self",
        "pub fn with_script(self, script: FormatScript) -> Self",
        "pub fn with_size(self, points: u16) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Font",
      "trait_implementations": [
        "impl Clone for Font",
        "impl Debug for Font",
        "impl Default for Font",
        "impl Eq for Font",
        "impl Hash for Font",
        "impl PartialEq for Font",
        "impl StructuralPartialEq for Font"
      ]
    },
    {
      "declaration": "pub struct Format { /* private fields */ }",
      "inherent_items": [
        "pub fn align(self, h: HAlign) -> Self",
        "pub fn alignment(self, alignment: Alignment) -> Self",
        "pub fn as_cell_style(&self) -> &CellStyle",
        "pub fn background_color(self, color: impl Into<Color>) -> Self",
        "pub fn bold(self) -> Self",
        "pub fn border(self, border: Border) -> Self",
        "pub fn border_bottom(self, style: FormatBorder) -> Self",
        "pub fn border_bottom_color(self, color: impl Into<Color>) -> Self",
        "pub fn border_left(self, style: FormatBorder) -> Self",
        "pub fn border_left_color(self, color: impl Into<Color>) -> Self",
        "pub fn border_right(self, style: FormatBorder) -> Self",
        "pub fn border_right_color(self, color: impl Into<Color>) -> Self",
        "pub fn border_top(self, style: FormatBorder) -> Self",
        "pub fn border_top_color(self, color: impl Into<Color>) -> Self",
        "pub fn color(self, color: impl Into<Color>) -> Self",
        "pub fn fill(self, color: impl Into<Color>) -> Self",
        "pub fn font_name(self, name: impl AsRef<str>) -> Self",
        "pub fn font_script(self, script: FormatScript) -> Self",
        "pub fn foreground_color(self, color: impl Into<Color>) -> Self",
        "pub fn from_cell_style(style: CellStyle) -> Self",
        "pub fn hidden(self) -> Self",
        "pub fn indent(self, level: u8) -> Self",
        "pub fn into_cell_style(self) -> CellStyle",
        "pub fn italic(self) -> Self",
        "pub fn locked(self) -> Self",
        "pub fn merge(&self, overlay: &CellStyle) -> Self",
        "pub fn merge(&self, overlay: &Format) -> Self",
        "pub fn new() -> Self",
        "pub fn num_fmt(self, code: impl AsRef<str>) -> Self",
        "pub fn pattern(self, pattern: FormatPattern) -> Self",
        "pub fn pattern_fill(self, fill: Fill) -> Self",
        "pub fn set_align(self, h: FormatAlign) -> Self",
        "pub fn set_alignment(self, alignment: Alignment) -> Self",
        "pub fn set_background_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_bg_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_bold(self) -> Self",
        "pub fn set_border(self, style: FormatBorder) -> Self",
        "pub fn set_border_bottom(self, style: FormatBorder) -> Self",
        "pub fn set_border_bottom_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_left(self, style: FormatBorder) -> Self",
        "pub fn set_border_left_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_right(self, style: FormatBorder) -> Self",
        "pub fn set_border_right_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_border_top(self, style: FormatBorder) -> Self",
        "pub fn set_border_top_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_font_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_font_name(self, name: impl AsRef<str>) -> Self",
        "pub fn set_font_script(self, script: FormatScript) -> Self",
        "pub fn set_font_size(self, points: u16) -> Self",
        "pub fn set_font_strikethrough(self) -> Self",
        "pub fn set_foreground_color(self, color: impl Into<Color>) -> Self",
        "pub fn set_hidden(self) -> Self",
        "pub fn set_indent(self, level: u8) -> Self",
        "pub fn set_italic(self) -> Self",
        "pub fn set_locked(self) -> Self",
        "pub fn set_num_format(self, code: impl AsRef<str>) -> Self",
        "pub fn set_pattern(self, pattern: FormatPattern) -> Self",
        "pub fn set_pattern_fill(self, fill: Fill) -> Self",
        "pub fn set_shrink_to_fit(self) -> Self",
        "pub fn set_strikethrough(self) -> Self",
        "pub fn set_text_rotation(self, degrees: i16) -> Self",
        "pub fn set_text_wrap(self) -> Self",
        "pub fn set_underline(self) -> Self",
        "pub fn set_unlocked(self) -> Self",
        "pub fn set_valign(self, v: VAlign) -> Self",
        "pub fn shrink_to_fit(self) -> Self",
        "pub fn size(self, points: u16) -> Self",
        "pub fn strikethrough(self) -> Self",
        "pub fn text_rotation(self, degrees: i16) -> Self",
        "pub fn underline(self) -> Self",
        "pub fn unlocked(self) -> Self",
        "pub fn valign(self, v: VAlign) -> Self",
        "pub fn wrap(self) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Format",
      "trait_implementations": [
        "impl Clone for Format",
        "impl Debug for Format",
        "impl Default for Format",
        "impl Deref for Format",
        "impl DerefMut for Format",
        "impl Eq for Format",
        "impl From<CellStyle> for Format",
        "impl From<Format> for CellStyle",
        "impl Hash for Format",
        "impl PartialEq for Format",
        "impl StructuralPartialEq for Format"
      ]
    },
    {
      "declaration": "pub type FormatAlign = HAlign;",
      "inherent_items": [],
      "kind": "type",
      "path": "rxls::FormatAlign",
      "trait_implementations": []
    },
    {
      "declaration": "pub type FormatBorder = BorderStyle;",
      "inherent_items": [],
      "kind": "type",
      "path": "rxls::FormatBorder",
      "trait_implementations": []
    },
    {
      "declaration": "pub enum FormatPattern { None, Solid, MediumGray, DarkGray, LightGray, DarkHorizontal, DarkVertical, DarkDown, DarkUp, DarkGrid, DarkTrellis, LightHorizontal, LightVertical, LightDown, LightUp, LightGrid, LightTrellis, Gray125, Gray0625, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::FormatPattern",
      "trait_implementations": [
        "impl Clone for FormatPattern",
        "impl Copy for FormatPattern",
        "impl Debug for FormatPattern",
        "impl Default for FormatPattern",
        "impl Eq for FormatPattern",
        "impl Hash for FormatPattern",
        "impl PartialEq for FormatPattern",
        "impl StructuralPartialEq for FormatPattern"
      ]
    },
    {
      "declaration": "pub enum FormatScript { None, Superscript, Subscript, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::FormatScript",
      "trait_implementations": [
        "impl Clone for FormatScript",
        "impl Copy for FormatScript",
        "impl Debug for FormatScript",
        "impl Default for FormatScript",
        "impl Eq for FormatScript",
        "impl Hash for FormatScript",
        "impl PartialEq for FormatScript",
        "impl StructuralPartialEq for FormatScript"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum FormulaEvaluation { Computed(Cell), Fallback { cached: Cell, reason: FormulaUnsupportedReason, }, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::FormulaEvaluation",
      "trait_implementations": [
        "impl Clone for FormulaEvaluation",
        "impl Debug for FormulaEvaluation",
        "impl PartialEq for FormulaEvaluation",
        "impl StructuralPartialEq for FormulaEvaluation"
      ]
    },
    {
      "declaration": "pub struct FormulaRange<'a> { /* private fields */ }",
      "inherent_items": [
        "pub fn cells( &self, ) -> impl DoubleEndedIterator<Item = (usize, usize, Option<&str>)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn dimensions_info(&self) -> Option<Dimensions>",
        "pub fn empty() -> Self",
        "pub fn end(&self) -> Option<(u32, u32)>",
        "pub fn from_sparse<I, S>(formulas: I) -> Selfwhere I: IntoIterator<Item = ((u32, u32), S)>, S: Into<String>,",
        "pub fn get(&self, pos: (usize, usize)) -> Option<&str>",
        "pub fn get_abs(&self, row: u32, col: u16) -> Option<&str>",
        "pub fn get_size(&self) -> (usize, usize)",
        "pub fn get_value(&self, pos: (u32, u32)) -> Option<&str>",
        "pub fn headers(&self) -> Option<Vec<String>>",
        "pub fn height(&self) -> usize",
        "pub fn is_empty(&self) -> bool",
        "pub fn new(start: (u32, u32), end: (u32, u32)) -> Self",
        "pub fn range(&self, start: (u32, u32), end: (u32, u32)) -> Self",
        "pub fn row_views(&self) -> FormulaRangeRows<'_, 'a> \u24d8",
        "pub fn rows( &self, ) -> impl DoubleEndedIterator<Item = Vec<Option<&str>>> + ExactSizeIterator + FusedIterator + '_",
        "pub fn set_value(&mut self, pos: (u32, u32), formula: impl Into<String>)",
        "pub fn size(&self) -> (usize, usize)",
        "pub fn start(&self) -> Option<(u32, u32)>",
        "pub fn used_cells( &self, ) -> impl DoubleEndedIterator<Item = (u32, u16, &str)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn used_cells_abs( &self, ) -> impl DoubleEndedIterator<Item = (u32, u16, &str)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn width(&self) -> usize"
      ],
      "kind": "struct",
      "path": "rxls::FormulaRange",
      "trait_implementations": [
        "impl<'a> Clone for FormulaRange<'a>",
        "impl<'a> Debug for FormulaRange<'a>",
        "impl<'a> Default for FormulaRange<'a>",
        "impl<'a> Eq for FormulaRange<'a>",
        "impl<'left, 'right> PartialEq<FormulaRange<'right>> for FormulaRange<'left>"
      ]
    },
    {
      "declaration": "pub struct FormulaRangeRow<'range, 'formula> { /* private fields */ }",
      "inherent_items": [
        "pub fn cells( &self, ) -> impl DoubleEndedIterator<Item = (usize, Option<&'range str>)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn end_col(&self) -> u16",
        "pub fn get(&self, col: usize) -> Option<&str>",
        "pub fn get_abs(&self, col: u16) -> Option<&str>",
        "pub fn is_empty(&self) -> bool",
        "pub fn iter(&self) -> FormulaRangeRowCells<'range, 'formula> \u24d8",
        "pub fn len(&self) -> usize",
        "pub fn row(&self) -> u32",
        "pub fn start_col(&self) -> u16",
        "pub fn used_cells(&self) -> FormulaRangeRowUsedCells<'range, 'formula> \u24d8"
      ],
      "kind": "struct",
      "path": "rxls::FormulaRangeRow",
      "trait_implementations": [
        "impl<'range, 'formula> Clone for FormulaRangeRow<'range, 'formula>",
        "impl<'range, 'formula> Copy for FormulaRangeRow<'range, 'formula>",
        "impl<'range, 'formula> Debug for FormulaRangeRow<'range, 'formula>"
      ]
    },
    {
      "declaration": "pub struct FormulaRangeRowCells<'range, 'formula> { /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::FormulaRangeRowCells",
      "trait_implementations": [
        "impl<'range, 'formula> Clone for FormulaRangeRowCells<'range, 'formula>",
        "impl<'range, 'formula> Debug for FormulaRangeRowCells<'range, 'formula>",
        "impl<'range, 'formula> DoubleEndedIterator for FormulaRangeRowCells<'range, 'formula>",
        "impl<'range, 'formula> ExactSizeIterator for FormulaRangeRowCells<'range, 'formula>",
        "impl<'range, 'formula> FusedIterator for FormulaRangeRowCells<'range, 'formula>",
        "impl<'range, 'formula> Iterator for FormulaRangeRowCells<'range, 'formula>"
      ]
    },
    {
      "declaration": "pub struct FormulaRangeRowUsedCells<'range, 'formula> { /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::FormulaRangeRowUsedCells",
      "trait_implementations": [
        "impl<'range, 'formula> Clone for FormulaRangeRowUsedCells<'range, 'formula>",
        "impl<'range, 'formula> Debug for FormulaRangeRowUsedCells<'range, 'formula>",
        "impl<'range, 'formula> DoubleEndedIterator for FormulaRangeRowUsedCells<'range, 'formula>",
        "impl<'range, 'formula> ExactSizeIterator for FormulaRangeRowUsedCells<'range, 'formula>",
        "impl<'range, 'formula> FusedIterator for FormulaRangeRowUsedCells<'range, 'formula>",
        "impl<'range, 'formula> Iterator for FormulaRangeRowUsedCells<'range, 'formula>"
      ]
    },
    {
      "declaration": "pub struct FormulaRangeRows<'range, 'formula> { /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::FormulaRangeRows",
      "trait_implementations": [
        "impl<'range, 'formula> Clone for FormulaRangeRows<'range, 'formula>",
        "impl<'range, 'formula> Debug for FormulaRangeRows<'range, 'formula>",
        "impl<'range, 'formula> DoubleEndedIterator for FormulaRangeRows<'range, 'formula>",
        "impl<'range, 'formula> ExactSizeIterator for FormulaRangeRows<'range, 'formula>",
        "impl<'range, 'formula> FusedIterator for FormulaRangeRows<'range, 'formula>",
        "impl<'range, 'formula> Iterator for FormulaRangeRows<'range, 'formula>"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum FormulaUnsupportedReason { UnsupportedFunction, Volatile, ExternalRef, CircularReference, UnresolvedName, UnparsableExpression, ArraySemantics, RangeTooLarge, SheetNotFound, ExpressionTooComplex, OperationLimitExceeded, DependencyDepthExceeded, }",
      "inherent_items": [
        "pub fn code(self) -> &'static str"
      ],
      "kind": "enum",
      "path": "rxls::FormulaUnsupportedReason",
      "trait_implementations": [
        "impl Clone for FormulaUnsupportedReason",
        "impl Copy for FormulaUnsupportedReason",
        "impl Debug for FormulaUnsupportedReason",
        "impl Eq for FormulaUnsupportedReason",
        "impl PartialEq for FormulaUnsupportedReason",
        "impl StructuralPartialEq for FormulaUnsupportedReason"
      ]
    },
    {
      "declaration": "pub enum HAlign { Left, Center, Right, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::HAlign",
      "trait_implementations": [
        "impl Clone for HAlign",
        "impl Copy for HAlign",
        "impl Debug for HAlign",
        "impl Eq for HAlign",
        "impl Hash for HAlign",
        "impl PartialEq for HAlign",
        "impl StructuralPartialEq for HAlign"
      ]
    },
    {
      "declaration": "pub enum HeaderRow { FirstNonEmptyRow, Row(u32), }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::HeaderRow",
      "trait_implementations": [
        "impl Clone for HeaderRow",
        "impl Copy for HeaderRow",
        "impl Debug for HeaderRow",
        "impl Default for HeaderRow",
        "impl Eq for HeaderRow",
        "impl From<u32> for HeaderRow",
        "impl Hash for HeaderRow",
        "impl PartialEq for HeaderRow",
        "impl StructuralPartialEq for HeaderRow"
      ]
    },
    {
      "declaration": "pub struct Image { pub data: Vec<u8>, pub format: ImageFmt, pub from: (u32, u16), pub to: Option<(u32, u16)>, }",
      "inherent_items": [
        "pub fn new(data: impl Into<Vec<u8>>, format: ImageFmt, from: (u32, u16)) -> Self",
        "pub fn with_to(self, to: (u32, u16)) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Image",
      "trait_implementations": [
        "impl Clone for Image",
        "impl Debug for Image",
        "impl Eq for Image",
        "impl PartialEq for Image",
        "impl StructuralPartialEq for Image"
      ]
    },
    {
      "declaration": "pub enum ImageFmt { Png, Jpeg, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::ImageFmt",
      "trait_implementations": [
        "impl Clone for ImageFmt",
        "impl Copy for ImageFmt",
        "impl Debug for ImageFmt",
        "impl Eq for ImageFmt",
        "impl PartialEq for ImageFmt",
        "impl StructuralPartialEq for ImageFmt"
      ]
    },
    {
      "declaration": "pub struct LocalDefinedName { pub sheet: String, pub name: String, pub refers_to: String, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::LocalDefinedName",
      "trait_implementations": [
        "impl Clone for LocalDefinedName",
        "impl Debug for LocalDefinedName",
        "impl Eq for LocalDefinedName",
        "impl PartialEq for LocalDefinedName",
        "impl StructuralPartialEq for LocalDefinedName"
      ]
    },
    {
      "declaration": "pub struct PageSetup { pub landscape: bool, pub margins: Option<(f64, f64, f64, f64, f64, f64)>, pub print_area: Option<(u32, u16, u32, u16)>, pub repeat_rows: Option<(u32, u32)>, pub repeat_cols: Option<(u16, u16)>, pub fit_to_width: Option<u16>, pub fit_to_height: Option<u16>, pub header: Option<String>, pub footer: Option<String>, pub paper_size: Option<u16>, pub scale: Option<u16>, pub center_horizontally: bool, pub center_vertically: bool, pub first_page_number: Option<u16>, }",
      "inherent_items": [
        "pub fn new() -> Self",
        "pub fn with_center_horizontally(self, center: bool) -> Self",
        "pub fn with_center_vertically(self, center: bool) -> Self",
        "pub fn with_first_page_number(self, first_page_number: u16) -> Self",
        "pub fn with_fit_to_pages(self, width: u16, height: u16) -> Self",
        "pub fn with_footer(self, footer: impl AsRef<str>) -> Self",
        "pub fn with_header(self, header: impl AsRef<str>) -> Self",
        "pub fn with_landscape(self) -> Self",
        "pub fn with_margins( self, left: f64, right: f64, top: f64, bottom: f64, header: f64, footer: f64, ) -> Self",
        "pub fn with_paper_size(self, paper_size: u16) -> Self",
        "pub fn with_print_area(self, range: (u32, u16, u32, u16)) -> Self",
        "pub fn with_repeat_cols(self, first: u16, last: u16) -> Self",
        "pub fn with_repeat_rows(self, first: u32, last: u32) -> Self",
        "pub fn with_scale(self, scale: u16) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::PageSetup",
      "trait_implementations": [
        "impl Clone for PageSetup",
        "impl Debug for PageSetup",
        "impl Default for PageSetup",
        "impl PartialEq for PageSetup",
        "impl StructuralPartialEq for PageSetup"
      ]
    },
    {
      "declaration": "pub struct Picture { pub row: u32, pub col: u32, pub sheet_name: String, pub extension: String, pub data: Vec<u8>, pub name: String, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::Picture",
      "trait_implementations": [
        "impl Clone for Picture",
        "impl Debug for Picture",
        "impl Eq for Picture",
        "impl PartialEq for Picture",
        "impl StructuralPartialEq for Picture"
      ]
    },
    {
      "declaration": "pub struct ProtectionOptions { pub sort: bool, pub auto_filter: bool, pub format_cells: bool, pub format_columns: bool, pub format_rows: bool, pub insert_columns: bool, pub insert_rows: bool, pub insert_hyperlinks: bool, pub delete_columns: bool, pub delete_rows: bool, pub pivot_tables: bool, }",
      "inherent_items": [
        "pub fn allow_auto_filter(self) -> Self",
        "pub fn allow_delete_columns(self) -> Self",
        "pub fn allow_delete_rows(self) -> Self",
        "pub fn allow_format_cells(self) -> Self",
        "pub fn allow_format_columns(self) -> Self",
        "pub fn allow_format_rows(self) -> Self",
        "pub fn allow_insert_columns(self) -> Self",
        "pub fn allow_insert_hyperlinks(self) -> Self",
        "pub fn allow_insert_rows(self) -> Self",
        "pub fn allow_pivot_tables(self) -> Self",
        "pub fn allow_sort(self) -> Self",
        "pub fn new() -> Self"
      ],
      "kind": "struct",
      "path": "rxls::ProtectionOptions",
      "trait_implementations": [
        "impl Clone for ProtectionOptions",
        "impl Copy for ProtectionOptions",
        "impl Debug for ProtectionOptions",
        "impl Default for ProtectionOptions",
        "impl Eq for ProtectionOptions",
        "impl Hash for ProtectionOptions",
        "impl PartialEq for ProtectionOptions",
        "impl StructuralPartialEq for ProtectionOptions"
      ]
    },
    {
      "declaration": "pub const REPORT_SCHEMA_VERSION: u32 = 1;",
      "inherent_items": [],
      "kind": "constant",
      "path": "rxls::REPORT_SCHEMA_VERSION",
      "trait_implementations": []
    },
    {
      "declaration": "pub struct Range<'a> { /* private fields */ }",
      "inherent_items": [
        "pub fn cells( &self, ) -> impl DoubleEndedIterator<Item = (usize, usize, Option<&Cell>)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn deserialize<D>(&'a self) -> Result<RangeDeserializer<'a, D>, DeError>where D: Deserialize<'a>,",
        "pub fn dimensions_info(&self) -> Option<Dimensions>",
        "pub fn empty() -> Self",
        "pub fn end(&self) -> Option<(u32, u32)>",
        "pub fn formatted(&self, pos: (usize, usize)) -> Option<&str>",
        "pub fn formatted_abs(&self, row: u32, col: u16) -> Option<&str>",
        "pub fn from_sparse<I, V>(cells: I) -> Selfwhere I: IntoIterator<Item = ((u32, u32), V)>, V: Into<Cell>,",
        "pub fn get(&self, pos: (usize, usize)) -> Option<&Cell>",
        "pub fn get_abs(&self, row: u32, col: u16) -> Option<&Cell>",
        "pub fn get_size(&self) -> (usize, usize)",
        "pub fn get_value(&self, pos: (u32, u32)) -> Option<&Cell>",
        "pub fn headers(&self) -> Option<Vec<String>>",
        "pub fn height(&self) -> usize",
        "pub fn is_empty(&self) -> bool",
        "pub fn new(start: (u32, u32), end: (u32, u32)) -> Self",
        "pub fn range(&self, start: (u32, u32), end: (u32, u32)) -> Self",
        "pub fn row_views(&self) -> RangeRows<'_, 'a> \u24d8",
        "pub fn rows( &self, ) -> impl DoubleEndedIterator<Item = Vec<Option<&Cell>>> + ExactSizeIterator + FusedIterator + '_",
        "pub fn set_value(&mut self, pos: (u32, u32), value: impl Into<Cell>)",
        "pub fn size(&self) -> (usize, usize)",
        "pub fn start(&self) -> Option<(u32, u32)>",
        "pub fn used_cells( &self, ) -> impl DoubleEndedIterator<Item = (u32, u16, &Cell)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn used_cells_abs( &self, ) -> impl DoubleEndedIterator<Item = (u32, u16, &Cell)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn width(&self) -> usize"
      ],
      "kind": "struct",
      "path": "rxls::Range",
      "trait_implementations": [
        "impl<'a> Clone for Range<'a>",
        "impl<'a> Debug for Range<'a>",
        "impl<'a> Default for Range<'a>",
        "impl<'left, 'right> PartialEq<Range<'right>> for Range<'left>"
      ]
    },
    {
      "declaration": "pub struct RangeDeserializer<'cell, D>where D: Deserialize<'cell>,{ /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::RangeDeserializer",
      "trait_implementations": [
        "impl<'cell, D> Debug for RangeDeserializer<'cell, D>where D: Deserialize<'cell> + Debug,",
        "impl<'cell, D> ExactSizeIterator for RangeDeserializer<'cell, D>where D: Deserialize<'cell>,",
        "impl<'cell, D> FusedIterator for RangeDeserializer<'cell, D>where D: Deserialize<'cell>,",
        "impl<'cell, D> Iterator for RangeDeserializer<'cell, D>where D: Deserialize<'cell>,"
      ]
    },
    {
      "declaration": "pub struct RangeDeserializerBuilder { /* private fields */ }",
      "inherent_items": [
        "pub fn from_range<'cell, D>( &self, range: &'cell Range<'cell>, ) -> Result<RangeDeserializer<'cell, D>, DeError>where D: Deserialize<'cell>,",
        "pub fn has_headers(&mut self, yes: bool) -> &mut Self",
        "pub fn new() -> Self",
        "pub fn with_deserialize_headers<D>() -> Selfwhere D: for<'de> Deserialize<'de>,",
        "pub fn with_header_row(&mut self, row: impl Into<HeaderRow>) -> &mut Self",
        "pub fn with_headers<H>(headers: &[H]) -> Selfwhere H: AsRef<str>,"
      ],
      "kind": "struct",
      "path": "rxls::RangeDeserializerBuilder",
      "trait_implementations": [
        "impl Clone for RangeDeserializerBuilder",
        "impl Debug for RangeDeserializerBuilder",
        "impl Default for RangeDeserializerBuilder"
      ]
    },
    {
      "declaration": "pub struct RangeRow<'range, 'cell> { /* private fields */ }",
      "inherent_items": [
        "pub fn cells( &self, ) -> impl DoubleEndedIterator<Item = (usize, Option<&'range Cell>)> + ExactSizeIterator + FusedIterator + '_",
        "pub fn end_col(&self) -> u16",
        "pub fn get(&self, col: usize) -> Option<&Cell>",
        "pub fn get_abs(&self, col: u16) -> Option<&Cell>",
        "pub fn is_empty(&self) -> bool",
        "pub fn iter(&self) -> RangeRowCells<'range, 'cell> \u24d8",
        "pub fn len(&self) -> usize",
        "pub fn row(&self) -> u32",
        "pub fn start_col(&self) -> u16",
        "pub fn used_cells(&self) -> RangeRowUsedCells<'range, 'cell> \u24d8"
      ],
      "kind": "struct",
      "path": "rxls::RangeRow",
      "trait_implementations": [
        "impl<'range, 'cell> Clone for RangeRow<'range, 'cell>",
        "impl<'range, 'cell> Copy for RangeRow<'range, 'cell>",
        "impl<'range, 'cell> Debug for RangeRow<'range, 'cell>"
      ]
    },
    {
      "declaration": "pub struct RangeRowCells<'range, 'cell> { /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::RangeRowCells",
      "trait_implementations": [
        "impl<'range, 'cell> Clone for RangeRowCells<'range, 'cell>",
        "impl<'range, 'cell> Debug for RangeRowCells<'range, 'cell>",
        "impl<'range, 'cell> DoubleEndedIterator for RangeRowCells<'range, 'cell>",
        "impl<'range, 'cell> ExactSizeIterator for RangeRowCells<'range, 'cell>",
        "impl<'range, 'cell> FusedIterator for RangeRowCells<'range, 'cell>",
        "impl<'range, 'cell> Iterator for RangeRowCells<'range, 'cell>"
      ]
    },
    {
      "declaration": "pub struct RangeRowUsedCells<'range, 'cell> { /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::RangeRowUsedCells",
      "trait_implementations": [
        "impl<'range, 'cell> Clone for RangeRowUsedCells<'range, 'cell>",
        "impl<'range, 'cell> Debug for RangeRowUsedCells<'range, 'cell>",
        "impl<'range, 'cell> DoubleEndedIterator for RangeRowUsedCells<'range, 'cell>",
        "impl<'range, 'cell> ExactSizeIterator for RangeRowUsedCells<'range, 'cell>",
        "impl<'range, 'cell> FusedIterator for RangeRowUsedCells<'range, 'cell>",
        "impl<'range, 'cell> Iterator for RangeRowUsedCells<'range, 'cell>"
      ]
    },
    {
      "declaration": "pub struct RangeRows<'range, 'cell> { /* private fields */ }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::RangeRows",
      "trait_implementations": [
        "impl<'range, 'cell> Clone for RangeRows<'range, 'cell>",
        "impl<'range, 'cell> Debug for RangeRows<'range, 'cell>",
        "impl<'range, 'cell> DoubleEndedIterator for RangeRows<'range, 'cell>",
        "impl<'range, 'cell> ExactSizeIterator for RangeRows<'range, 'cell>",
        "impl<'range, 'cell> FusedIterator for RangeRows<'range, 'cell>",
        "impl<'range, 'cell> Iterator for RangeRows<'range, 'cell>"
      ]
    },
    {
      "declaration": "pub trait Reader { // Required methods fn sheet_names(&self) -> Vec<&str>; fn sheets_metadata(&self) -> Vec<SheetMetadata>; fn defined_names(&self) -> &[(String, String)]; fn local_defined_names(&self) -> &[LocalDefinedName]; fn with_header_row(&mut self, header_row: HeaderRow) -> &mut Self where Self: Sized; fn header_row(&self) -> HeaderRow; fn worksheet_range(&self, name: &str) -> Option<Range<'_>>; fn worksheet_range_at(&self, index: usize) -> Option<Range<'_>>; fn worksheet_formula(&self, name: &str) -> Option<FormulaRange<'_>>; fn worksheet_formula_at(&self, index: usize) -> Option<FormulaRange<'_>>; fn worksheet_merge_cells( &self, name: &str, ) -> Option<&[(u32, u16, u32, u16)]>; fn worksheet_merge_cells_at( &self, index: usize, ) -> Option<&[(u32, u16, u32, u16)]>; fn merged_regions(&self) -> Vec<(&str, Dimensions)>; fn merged_regions_by_sheet(&self, name: &str) -> Vec<Dimensions>; fn worksheet_metadata(&self, name: &str) -> Option<WorksheetMetadata<'_>>; fn worksheet_metadata_at( &self, index: usize, ) -> Option<WorksheetMetadata<'_>>; fn worksheets_metadata(&self) -> Vec<WorksheetMetadata<'_>>; fn worksheets(&self) -> Vec<(String, Range<'_>)>; fn metadata(&self) -> WorkbookMetadata<'_>; fn pictures(&self) -> Option<Vec<(String, Vec<u8>)>>; fn pictures_with_metadata(&self) -> Vec<Picture>; fn table_names(&self) -> Vec<&str>; fn table_names_in_sheet(&self, sheet_name: &str) -> Vec<&str>; fn table_by_name(&self, table_name: &str) -> Option<(&str, &Table)>; fn table_data_by_name(&self, table_name: &str) -> Option<(&str, Range<'_>)>; // Provided methods fn worksheet_range_ref(&self, name: &str) -> Option<Range<'_>> { ... } fn worksheet_range_at_ref(&self, index: usize) -> Option<Range<'_>> { ... } fn worksheet_formula_ref(&self, name: &str) -> Option<FormulaRange<'_>> { ... } fn worksheet_formula_at_ref(&self, index: usize) -> Option<FormulaRange<'_>> { ... } fn has_1904_epoch(&self) -> bool { ... } fn active_sheet_index(&self) -> Option<usize> { ... } fn active_sheet_name(&self) -> Option<&str> { ... } fn table_by_name_ref(&self, table_name: &str) -> Option<(&str, &Table)> { ... } fn table_data_by_name_ref( &self, table_name: &str, ) -> Option<(&str, Range<'_>)> { ... } }",
      "inherent_items": [],
      "kind": "trait",
      "path": "rxls::Reader",
      "trait_implementations": []
    },
    {
      "declaration": "#[non_exhaustive]pub struct ReportEvaluation { pub computed: usize, pub errors: usize, pub cached: usize, pub unsupported: usize, pub by_reason: BTreeMap<String, usize>, pub truncated: bool, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::ReportEvaluation",
      "trait_implementations": [
        "impl Clone for ReportEvaluation",
        "impl Debug for ReportEvaluation",
        "impl Default for ReportEvaluation"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub struct ReportFeatures { pub comments: usize, pub data_validations: usize, pub tables: usize, pub merged_ranges: usize, pub hyperlinks: usize, pub images: usize, pub charts: usize, pub sparklines: usize, pub conditional_formatting: usize, pub hidden_sheets: usize, pub frozen_panes: usize, pub page_setup: usize, pub protection: usize, pub pivot_tables: usize, pub vba_project: bool, pub threaded_comments: usize, pub external_links: usize, pub custom_xml: usize, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::ReportFeatures",
      "trait_implementations": [
        "impl Clone for ReportFeatures",
        "impl Copy for ReportFeatures",
        "impl Debug for ReportFeatures",
        "impl Default for ReportFeatures"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub struct ReportProperties { pub title: Option<String>, pub subject: Option<String>, pub creator: Option<String>, pub keywords: Option<String>, pub description: Option<String>, pub last_modified_by: Option<String>, pub company: Option<String>, pub created: Option<String>, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::ReportProperties",
      "trait_implementations": [
        "impl Clone for ReportProperties",
        "impl Debug for ReportProperties",
        "impl Default for ReportProperties"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub struct ReportStats { pub sheets: usize, pub cells: usize, pub formulas: usize, pub text_truncated: bool, }",
      "inherent_items": [],
      "kind": "struct",
      "path": "rxls::ReportStats",
      "trait_implementations": [
        "impl Clone for ReportStats",
        "impl Copy for ReportStats",
        "impl Debug for ReportStats"
      ]
    },
    {
      "declaration": "pub type Result<T> = Result<T, Error>;",
      "inherent_items": [],
      "kind": "type",
      "path": "rxls::Result",
      "trait_implementations": []
    },
    {
      "declaration": "pub struct Series { pub name: Option<String>, pub categories: Option<String>, pub values: String, pub bubble_sizes: Option<String>, }",
      "inherent_items": [
        "pub fn new(values: impl AsRef<str>) -> Self",
        "pub fn with_bubble_sizes(self, bubble_sizes: impl AsRef<str>) -> Self",
        "pub fn with_categories(self, categories: impl AsRef<str>) -> Self",
        "pub fn with_name(self, name: impl AsRef<str>) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Series",
      "trait_implementations": [
        "impl Clone for Series",
        "impl Debug for Series",
        "impl Eq for Series",
        "impl PartialEq for Series",
        "impl StructuralPartialEq for Series"
      ]
    },
    {
      "declaration": "pub struct Sheet { pub name: String, pub is_worksheet: bool, /* private fields */ }",
      "inherent_items": [
        "pub fn add_chart(&mut self, chart: Chart)",
        "pub fn add_comment( &mut self, row: u32, col: u16, text: impl AsRef<str>, author: impl Into<CommentAuthor>, )",
        "pub fn add_conditional_format(&mut self, cf: CondFormat)",
        "pub fn add_data_validation(&mut self, dv: DataValidation)",
        "pub fn add_image(&mut self, img: Image)",
        "pub fn add_sparkline(&mut self, sparkline: Sparkline)",
        "pub fn add_table(&mut self, table: Table)",
        "pub fn autofilter(&mut self, r0: u32, c0: u16, r1: u32, c1: u16)",
        "pub fn autofilter_range(&self) -> Option<(u32, u16, u32, u16)>",
        "pub fn cell(&self, row: u32, col: u16) -> Option<&Cell>",
        "pub fn cell_style(&self, row: u32, col: u16) -> Option<&CellStyle>",
        "pub fn cells(&self) -> impl Iterator<Item = (u32, u16, &Cell)>",
        "pub fn charts(&self) -> &[Chart]",
        "pub fn col_outline_levels(&self) -> &BTreeMap<u16, u8>",
        "pub fn collapse_row(&mut self, row: u32)",
        "pub fn collapsed_rows(&self) -> &BTreeSet<u32>",
        "pub fn column_widths(&self) -> &BTreeMap<u16, f32>",
        "pub fn comments(&self) -> &[Comment]",
        "pub fn conditional_formats(&self) -> &[CondFormat]",
        "pub fn data_validations(&self) -> &[DataValidation]",
        "pub fn dimensions(&self) -> Option<(u32, u16, u32, u16)>",
        "pub fn dimensions_info(&self) -> Option<Dimensions>",
        "pub fn formatted(&self, row: u32, col: u16) -> Option<&str>",
        "pub fn freeze_panes(&mut self, row: u32, col: u16)",
        "pub fn group_cols(&mut self, first: u16, last: u16, level: u8)",
        "pub fn group_rows(&mut self, first: u32, last: u32, level: u8)",
        "pub fn hidden_columns(&self) -> &BTreeSet<u16>",
        "pub fn hidden_rows(&self) -> &BTreeSet<u32>",
        "pub fn hide(&mut self)",
        "pub fn hide_column(&mut self, col: u16)",
        "pub fn hide_gridlines(&mut self)",
        "pub fn hide_row(&mut self, row: u32)",
        "pub fn hide_very(&mut self)",
        "pub fn hyperlinks(&self) -> &[(u32, u16, String)]",
        "pub fn images(&self) -> &[Image]",
        "pub fn is_hidden(&self) -> bool",
        "pub fn is_protected(&self) -> bool",
        "pub fn is_very_hidden(&self) -> bool",
        "pub fn merge(&mut self, r0: u32, c0: u16, r1: u32, c1: u16)",
        "pub fn merge_range( &mut self, r0: u32, c0: u16, r1: u32, c1: u16, text: impl AsRef<str>, format: &Format, )",
        "pub fn merged_ranges(&self) -> &[(u32, u16, u32, u16)]",
        "pub fn metadata(&self) -> WorksheetMetadata<'_>",
        "pub fn new(name: impl AsRef<str>) -> Self",
        "pub fn outline_summary_below(&self) -> bool",
        "pub fn outline_summary_right(&self) -> bool",
        "pub fn page_setup(&self) -> Option<&PageSetup>",
        "pub fn print_gridlines(&self) -> bool",
        "pub fn print_headings(&self) -> bool",
        "pub fn protect(&mut self)",
        "pub fn protect_with(&mut self, opts: ProtectionOptions)",
        "pub fn protection_options(&self) -> Option<ProtectionOptions>",
        "pub fn range(&self) -> Range<'_>",
        "pub fn rich_text_runs(&self, row: u32, col: u16) -> Option<&[TextRun]>",
        "pub fn row_heights(&self) -> &BTreeMap<u32, f32>",
        "pub fn row_outline_levels(&self) -> &BTreeMap<u32, u8>",
        "pub fn rows(&self) -> impl Iterator<Item = (u32, Vec<(u16, &Cell)>)>",
        "pub fn set_autofit(&mut self)",
        "pub fn set_col_format(&mut self, col: u16, format: &Format)",
        "pub fn set_col_width(&mut self, col: u16, chars: f32)",
        "pub fn set_default_col_width(&mut self, chars: f32)",
        "pub fn set_default_format(&mut self, format: &Format)",
        "pub fn set_default_row_height(&mut self, points: f32)",
        "pub fn set_outline_summary(&mut self, below: bool, right: bool)",
        "pub fn set_page_setup(&mut self, ps: PageSetup)",
        "pub fn set_print_gridlines(&mut self)",
        "pub fn set_print_headings(&mut self)",
        "pub fn set_right_to_left(&mut self, rtl: bool)",
        "pub fn set_row_format(&mut self, row: u32, format: &Format)",
        "pub fn set_row_height(&mut self, row: u32, points: f32)",
        "pub fn set_sheet_view(&mut self, view: SheetView)",
        "pub fn set_show_headers(&mut self, show: bool)",
        "pub fn set_tab_color(&mut self, color: impl Into<Color>)",
        "pub fn set_table_header_format( &mut self, table_name: impl AsRef<str>, format: &Format, )",
        "pub fn set_zoom(&mut self, percent: u16)",
        "pub fn sheet_type(&self) -> SheetType",
        "pub fn sheet_view(&self) -> SheetView",
        "pub fn sparklines(&self) -> &[Sparkline]",
        "pub fn tab_color(&self) -> Option<Color>",
        "pub fn tables(&self) -> &[Table]",
        "pub fn to_csv(&self) -> String",
        "pub fn to_csv_with_delimiter(&self, delimiter: char) -> String",
        "pub fn to_html(&self) -> String",
        "pub fn to_markdown(&self) -> String",
        "pub fn to_text(&self) -> String",
        "pub fn visible(&self) -> SheetVisible",
        "pub fn write(&mut self, row: u32, col: u16, value: impl Into<Cell>)",
        "pub fn write_blank_styled(&mut self, row: u32, col: u16, style: &CellStyle)",
        "pub fn write_blank_with_format(&mut self, row: u32, col: u16, format: &Format)",
        "pub fn write_boolean(&mut self, row: u32, col: u16, value: bool)",
        "pub fn write_boolean_with_format( &mut self, row: u32, col: u16, value: bool, format: &Format, )",
        "pub fn write_datetime(&mut self, row: u32, col: u16, serial: impl Into<f64>)",
        "pub fn write_datetime_with_format( &mut self, row: u32, col: u16, serial: impl Into<f64>, format: &Format, )",
        "pub fn write_error(&mut self, row: u32, col: u16, error: CellErrorType)",
        "pub fn write_error_with_format( &mut self, row: u32, col: u16, error: CellErrorType, format: &Format, )",
        "pub fn write_formula( &mut self, row: u32, col: u16, formula: impl AsRef<str>, cached: impl Into<Cell>, )",
        "pub fn write_formula_with_format( &mut self, row: u32, col: u16, formula: impl AsRef<str>, cached: impl Into<Cell>, format: &Format, )",
        "pub fn write_number(&mut self, row: u32, col: u16, value: impl Into<f64>)",
        "pub fn write_number_with_format( &mut self, row: u32, col: u16, value: impl Into<f64>, format: &Format, )",
        "pub fn write_rich<I>(&mut self, row: u32, col: u16, runs: I)where I: IntoIterator<Item = TextRun>,",
        "pub fn write_rich_styled<I>( &mut self, row: u32, col: u16, runs: I, style: &CellStyle, )where I: IntoIterator<Item = TextRun>,",
        "pub fn write_rich_with_format<I>( &mut self, row: u32, col: u16, runs: I, format: &Format, )where I: IntoIterator<Item = TextRun>,",
        "pub fn write_string(&mut self, row: u32, col: u16, value: impl AsRef<str>)",
        "pub fn write_string_with_format( &mut self, row: u32, col: u16, value: impl AsRef<str>, format: &Format, )",
        "pub fn write_styled( &mut self, row: u32, col: u16, value: impl Into<Cell>, style: &CellStyle, )",
        "pub fn write_url( &mut self, row: u32, col: u16, url: impl AsRef<str>, text: impl AsRef<str>, )",
        "pub fn write_url_with_format( &mut self, row: u32, col: u16, url: impl AsRef<str>, format: &Format, )",
        "pub fn write_url_with_text( &mut self, row: u32, col: u16, url: impl AsRef<str>, text: impl AsRef<str>, )",
        "pub fn write_url_with_text_and_format( &mut self, row: u32, col: u16, url: impl AsRef<str>, text: impl AsRef<str>, format: &Format, )",
        "pub fn write_with_format( &mut self, row: u32, col: u16, value: impl Into<Cell>, format: &Format, )"
      ],
      "kind": "struct",
      "path": "rxls::Sheet",
      "trait_implementations": [
        "impl Clone for Sheet",
        "impl Debug for Sheet",
        "impl Default for Sheet"
      ]
    },
    {
      "declaration": "pub struct SheetMetadata { pub name: String, pub typ: SheetType, pub visible: SheetVisible, }",
      "inherent_items": [
        "pub fn is_hidden(&self) -> bool",
        "pub fn is_very_hidden(&self) -> bool",
        "pub fn is_visible(&self) -> bool",
        "pub fn is_worksheet(&self) -> bool",
        "pub fn name(&self) -> &str",
        "pub fn sheet_type(&self) -> SheetType",
        "pub fn visible(&self) -> SheetVisible"
      ],
      "kind": "struct",
      "path": "rxls::SheetMetadata",
      "trait_implementations": [
        "impl Clone for SheetMetadata",
        "impl Debug for SheetMetadata",
        "impl Eq for SheetMetadata",
        "impl PartialEq for SheetMetadata",
        "impl StructuralPartialEq for SheetMetadata"
      ]
    },
    {
      "declaration": "pub enum SheetType { WorkSheet, DialogSheet, MacroSheet, ChartSheet, Vba, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::SheetType",
      "trait_implementations": [
        "impl Clone for SheetType",
        "impl Copy for SheetType",
        "impl Debug for SheetType",
        "impl Eq for SheetType",
        "impl PartialEq for SheetType",
        "impl StructuralPartialEq for SheetType"
      ]
    },
    {
      "declaration": "pub struct SheetView { pub freeze: Option<(u32, u16)>, pub hide_gridlines: bool, pub zoom: Option<u16>, pub show_headers: Option<bool>, pub right_to_left: bool, }",
      "inherent_items": [
        "pub fn new() -> Self",
        "pub fn with_freeze(self, row: u32, col: u16) -> Self",
        "pub fn with_hidden_gridlines(self) -> Self",
        "pub fn with_right_to_left(self, right_to_left: bool) -> Self",
        "pub fn with_show_headers(self, show: bool) -> Self",
        "pub fn with_zoom(self, percent: u16) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::SheetView",
      "trait_implementations": [
        "impl Clone for SheetView",
        "impl Copy for SheetView",
        "impl Debug for SheetView",
        "impl Default for SheetView",
        "impl Eq for SheetView",
        "impl PartialEq for SheetView",
        "impl StructuralPartialEq for SheetView"
      ]
    },
    {
      "declaration": "pub enum SheetVisible { Visible, Hidden, VeryHidden, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::SheetVisible",
      "trait_implementations": [
        "impl Clone for SheetVisible",
        "impl Copy for SheetVisible",
        "impl Debug for SheetVisible",
        "impl Eq for SheetVisible",
        "impl PartialEq for SheetVisible",
        "impl StructuralPartialEq for SheetVisible"
      ]
    },
    {
      "declaration": "pub struct Sparkline { pub location: (u32, u16), pub range: String, pub kind: SparklineKind, }",
      "inherent_items": [
        "pub fn new(location: (u32, u16), range: impl AsRef<str>) -> Self",
        "pub fn with_kind(self, kind: SparklineKind) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Sparkline",
      "trait_implementations": [
        "impl Clone for Sparkline",
        "impl Debug for Sparkline",
        "impl Eq for Sparkline",
        "impl Hash for Sparkline",
        "impl PartialEq for Sparkline",
        "impl StructuralPartialEq for Sparkline"
      ]
    },
    {
      "declaration": "pub enum SparklineKind { Line, Column, WinLoss, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::SparklineKind",
      "trait_implementations": [
        "impl Clone for SparklineKind",
        "impl Copy for SparklineKind",
        "impl Debug for SparklineKind",
        "impl Eq for SparklineKind",
        "impl Hash for SparklineKind",
        "impl PartialEq for SparklineKind",
        "impl StructuralPartialEq for SparklineKind"
      ]
    },
    {
      "declaration": "pub struct Spreadsheet { /* private fields */ }",
      "inherent_items": [
        "pub fn add_sheet(&mut self, name: &str) -> Result<()>",
        "pub fn append_row<I>(&mut self, sheet_name: &str, values: I) -> Result<u32>where I: IntoIterator<Item = Cell>,",
        "pub fn clear_freeze_panes(&mut self, sheet_name: &str) -> Result<()>",
        "pub fn clear_range( &mut self, sheet_name: &str, start_row: u32, start_col: u16, end_row: u32, end_col: u16, ) -> Result<()>",
        "pub fn delete_comment( &mut self, sheet_name: &str, row: u32, col: u16, ) -> Result<()>",
        "pub fn delete_data_validation( &mut self, sheet_name: &str, sqref: (u32, u16, u32, u16), ) -> Result<()>",
        "pub fn delete_hyperlink( &mut self, sheet_name: &str, row: u32, col: u16, ) -> Result<()>",
        "pub fn delete_sheet(&mut self, name: &str) -> Result<()>",
        "pub fn edit_capability(&self) -> &EditCapability",
        "pub fn edited_parts(&self) -> &[String]",
        "pub fn merge_cells( &mut self, sheet_name: &str, first_row: u32, first_col: u16, last_row: u32, last_col: u16, ) -> Result<()>",
        "pub fn open(bytes: &[u8]) -> Result<Self>",
        "pub fn rename_sheet(&mut self, old_name: &str, new_name: &str) -> Result<()>",
        "pub fn save(&self) -> Result<Vec<u8>>",
        "pub fn save_to_path(&self, path: impl AsRef<Path>) -> Result<()>",
        "pub fn set_active_sheet(&mut self, sheet_name: &str) -> Result<()>",
        "pub fn set_cell_formula( &mut self, sheet_name: &str, row: u32, col: u16, formula: impl AsRef<str>, cached: impl Into<Cell>, ) -> Result<()>",
        "pub fn set_cell_value( &mut self, sheet_name: &str, row: u32, col: u16, value: Cell, ) -> Result<()>",
        "pub fn set_column_hidden( &mut self, sheet_name: &str, col: u16, hidden: bool, ) -> Result<()>",
        "pub fn set_column_width( &mut self, sheet_name: &str, col: u16, width: f32, ) -> Result<()>",
        "pub fn set_comment( &mut self, sheet_name: &str, row: u32, col: u16, text: &str, author: Option<&str>, ) -> Result<()>",
        "pub fn set_data_validation( &mut self, sheet_name: &str, validation: DataValidation, ) -> Result<()>",
        "pub fn set_defined_name( &mut self, name: impl AsRef<str>, refers_to: impl AsRef<str>, ) -> Result<()>",
        "pub fn set_document_properties( &mut self, properties: DocProperties, ) -> Result<()>",
        "pub fn set_external_hyperlink( &mut self, sheet_name: &str, row: u32, col: u16, target: &str, ) -> Result<()>",
        "pub fn set_freeze_panes( &mut self, sheet_name: &str, row: u32, col: u16, ) -> Result<()>",
        "pub fn set_internal_hyperlink( &mut self, sheet_name: &str, row: u32, col: u16, location: &str, ) -> Result<()>",
        "pub fn set_print_area( &mut self, sheet_name: &str, area: Option<(u32, u16, u32, u16)>, ) -> Result<()>",
        "pub fn set_row_height( &mut self, sheet_name: &str, row: u32, points: f32, ) -> Result<()>",
        "pub fn set_row_hidden( &mut self, sheet_name: &str, row: u32, hidden: bool, ) -> Result<()>",
        "pub fn set_sheet_tab_color( &mut self, sheet_name: &str, color: impl Into<Color>, ) -> Result<()>",
        "pub fn set_sheet_visibility( &mut self, sheet_name: &str, visible: SheetVisible, ) -> Result<()>",
        "pub fn set_table_range( &mut self, sheet_name: &str, table_name: &str, range: (u32, u16, u32, u16), ) -> Result<()>",
        "pub fn transaction<T>( &mut self, edit: impl FnOnce(&mut Spreadsheet) -> Result<T>, ) -> Result<T>",
        "pub fn unmerge_cells( &mut self, sheet_name: &str, first_row: u32, first_col: u16, last_row: u32, last_col: u16, ) -> Result<()>",
        "pub fn workbook(&self) -> &Workbook"
      ],
      "kind": "struct",
      "path": "rxls::Spreadsheet",
      "trait_implementations": [
        "impl Clone for Spreadsheet",
        "impl Debug for Spreadsheet"
      ]
    },
    {
      "declaration": "pub struct Table { pub range: (u32, u16, u32, u16), pub name: String, pub columns: Vec<String>, pub style: Option<String>, }",
      "inherent_items": [
        "pub fn columns(&self) -> &[String]",
        "pub fn data<'a>(&self, sheet: &'a Sheet) -> Range<'a>",
        "pub fn name(&self) -> &str",
        "pub fn new<I, S>( range: (u32, u16, u32, u16), name: impl AsRef<str>, columns: I, ) -> Selfwhere I: IntoIterator<Item = S>, S: AsRef<str>,",
        "pub fn range(&self) -> (u32, u16, u32, u16)",
        "pub fn with_style(self, style: impl AsRef<str>) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::Table",
      "trait_implementations": [
        "impl Clone for Table",
        "impl Debug for Table",
        "impl Eq for Table",
        "impl PartialEq for Table",
        "impl StructuralPartialEq for Table"
      ]
    },
    {
      "declaration": "pub struct TextRun { pub text: String, pub font: Font, }",
      "inherent_items": [
        "pub fn new(text: impl Into<String>, font: Font) -> Self"
      ],
      "kind": "struct",
      "path": "rxls::TextRun",
      "trait_implementations": [
        "impl Clone for TextRun",
        "impl Debug for TextRun",
        "impl Default for TextRun",
        "impl Eq for TextRun",
        "impl Hash for TextRun",
        "impl PartialEq for TextRun",
        "impl StructuralPartialEq for TextRun"
      ]
    },
    {
      "declaration": "pub enum VAlign { Top, Middle, Bottom, }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::VAlign",
      "trait_implementations": [
        "impl Clone for VAlign",
        "impl Copy for VAlign",
        "impl Debug for VAlign",
        "impl Eq for VAlign",
        "impl Hash for VAlign",
        "impl PartialEq for VAlign",
        "impl StructuralPartialEq for VAlign"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub struct Workbook { pub sheets: Vec<Sheet>, pub date1904: bool, pub text_truncated: bool, pub properties: DocProperties, pub defined_names: Vec<(String, String)>, pub local_defined_names: Vec<LocalDefinedName>, /* private fields */ }",
      "inherent_items": [
        "pub fn active_sheet_index(&self) -> Option<usize>",
        "pub fn active_sheet_name(&self) -> Option<&str>",
        "pub fn add_sheet(&mut self, name: impl AsRef<str>) -> &mut Sheet",
        "pub fn define_local_name( &mut self, sheet: impl AsRef<str>, name: impl AsRef<str>, refers_to: impl AsRef<str>, )",
        "pub fn define_name(&mut self, name: impl AsRef<str>, refers_to: impl AsRef<str>)",
        "pub fn defined_names(&self) -> &[(String, String)]",
        "pub fn evaluate_cell( &self, sheet: &str, row: u32, col: u16, ) -> FormulaEvaluation",
        "pub fn has_1904_epoch(&self) -> bool",
        "pub fn header_row(&self) -> HeaderRow",
        "pub fn is_partial(&self) -> bool",
        "pub fn is_structure_protected(&self) -> bool",
        "pub fn local_defined_names(&self) -> &[LocalDefinedName]",
        "pub fn merged_regions(&self) -> Vec<(&str, Dimensions)>",
        "pub fn merged_regions_by_sheet(&self, name: &str) -> Vec<Dimensions>",
        "pub fn metadata(&self) -> WorkbookMetadata<'_>",
        "pub fn new() -> Self",
        "pub fn open(bytes: &[u8]) -> Result<Self>",
        "pub fn open_with_codepage( bytes: &[u8], force_codepage: Option<u16>, ) -> Result<Self>",
        "pub fn pictures(&self) -> Option<Vec<(String, Vec<u8>)>>",
        "pub fn pictures_with_metadata(&self) -> Vec<Picture>",
        "pub fn protect_structure(&mut self)",
        "pub fn set_active_sheet(&mut self, idx: usize)",
        "pub fn set_properties(&mut self, properties: DocProperties)",
        "pub fn sheet_by_name(&self, name: &str) -> Option<&Sheet>",
        "pub fn sheet_names(&self) -> Vec<&str>",
        "pub fn sheets_metadata(&self) -> Vec<SheetMetadata>",
        "pub fn table_by_name(&self, table_name: &str) -> Option<(&str, &Table)>",
        "pub fn table_by_name_ref(&self, table_name: &str) -> Option<(&str, &Table)>",
        "pub fn table_data_by_name(&self, table_name: &str) -> Option<(&str, Range<'_>)>",
        "pub fn table_data_by_name_ref( &self, table_name: &str, ) -> Option<(&str, Range<'_>)>",
        "pub fn table_names(&self) -> Vec<&str>",
        "pub fn table_names_in_sheet(&self, sheet_name: &str) -> Vec<&str>",
        "pub fn text(&self) -> String",
        "pub fn to_csv(&self, sheet_index: usize) -> Option<String>",
        "pub fn to_csv_with_delimiter( &self, sheet_index: usize, delimiter: char, ) -> Option<String>",
        "pub fn to_html(&self, sheet_index: usize) -> Option<String>",
        "pub fn to_markdown(&self, sheet_index: usize) -> Option<String>",
        "pub fn to_xlsx(&self) -> Vec<u8> \u24d8",
        "pub fn to_xlsx_checked(&self) -> Result<Vec<u8>, WriteError>",
        "pub fn with_header_row(&mut self, header_row: HeaderRow) -> &mut Self",
        "pub fn worksheet_formula(&self, name: &str) -> Option<FormulaRange<'_>>",
        "pub fn worksheet_formula_at(&self, index: usize) -> Option<FormulaRange<'_>>",
        "pub fn worksheet_formula_at_ref(&self, index: usize) -> Option<FormulaRange<'_>>",
        "pub fn worksheet_formula_ref(&self, name: &str) -> Option<FormulaRange<'_>>",
        "pub fn worksheet_merge_cells( &self, name: &str, ) -> Option<&[(u32, u16, u32, u16)]>",
        "pub fn worksheet_merge_cells_at( &self, index: usize, ) -> Option<&[(u32, u16, u32, u16)]>",
        "pub fn worksheet_metadata(&self, name: &str) -> Option<WorksheetMetadata<'_>>",
        "pub fn worksheet_metadata_at( &self, index: usize, ) -> Option<WorksheetMetadata<'_>>",
        "pub fn worksheet_range(&self, name: &str) -> Option<Range<'_>>",
        "pub fn worksheet_range_at(&self, index: usize) -> Option<Range<'_>>",
        "pub fn worksheet_range_at_ref(&self, index: usize) -> Option<Range<'_>>",
        "pub fn worksheet_range_ref(&self, name: &str) -> Option<Range<'_>>",
        "pub fn worksheets(&self) -> Vec<(String, Range<'_>)>",
        "pub fn worksheets_metadata(&self) -> Vec<WorksheetMetadata<'_>>"
      ],
      "kind": "struct",
      "path": "rxls::Workbook",
      "trait_implementations": [
        "impl Clone for Workbook",
        "impl Debug for Workbook",
        "impl Default for Workbook",
        "impl Reader for Workbook"
      ]
    },
    {
      "declaration": "pub struct WorkbookMetadata<'a> { pub date1904: bool, pub text_truncated: bool, pub structure_protected: bool, pub active_sheet: Option<usize>, pub active_sheet_name: Option<&'a str>, pub properties: &'a DocProperties, pub defined_names: &'a [(String, String)], pub local_defined_names: &'a [LocalDefinedName], pub sheets: Vec<SheetMetadata>, }",
      "inherent_items": [
        "pub fn active_sheet_index(&self) -> Option<usize>",
        "pub fn active_sheet_name(&self) -> Option<&'a str>",
        "pub fn defined_names(&self) -> &'a [(String, String)]",
        "pub fn document_properties(&self) -> &'a DocProperties",
        "pub fn has_1904_epoch(&self) -> bool",
        "pub fn is_structure_protected(&self) -> bool",
        "pub fn is_text_truncated(&self) -> bool",
        "pub fn sheets(&self) -> &[SheetMetadata]"
      ],
      "kind": "struct",
      "path": "rxls::WorkbookMetadata",
      "trait_implementations": [
        "impl<'a> Clone for WorkbookMetadata<'a>",
        "impl<'a> Debug for WorkbookMetadata<'a>",
        "impl<'a> Eq for WorkbookMetadata<'a>",
        "impl<'a> PartialEq for WorkbookMetadata<'a>",
        "impl<'a> StructuralPartialEq for WorkbookMetadata<'a>"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub struct WorkbookReport { pub schema_version: u32, pub format: String, pub stats: ReportStats, pub properties: ReportProperties, pub defined_names_count: usize, pub local_defined_names_count: usize, pub features: ReportFeatures, pub evaluation: ReportEvaluation, pub warnings: Vec<String>, }",
      "inherent_items": [
        "pub fn from_workbook(format: impl Into<String>, workbook: &Workbook) -> Self",
        "pub fn from_workbook_with_package( format: impl Into<String>, workbook: &Workbook, bytes: &[u8], ) -> Self",
        "pub fn to_json(&self) -> String"
      ],
      "kind": "struct",
      "path": "rxls::WorkbookReport",
      "trait_implementations": [
        "impl Clone for WorkbookReport",
        "impl Debug for WorkbookReport"
      ]
    },
    {
      "declaration": "#[non_exhaustive]pub enum WriteError { DuplicateTableName(String), DuplicateDefinedName(String), InvalidDefinedName(String), UnknownDefinedNameSheet { name: String, sheet: String, }, InvalidTableName(String), TableRangeColumnsMismatch { table: String, }, UnknownTableHeaderFormat { table: String, }, CellOutOfGrid { row: u32, col: u16, }, CellUnderMergedRange { row: u32, col: u16, }, NonFiniteNumber { row: u32, col: u16, }, InvalidHyperlinkTarget { row: u32, col: u16, target: String, }, InvalidXmlText { field: String, value: String, }, CellTextTooLong { row: u32, col: u16, length: usize, }, OutputTooLarge { estimated_bytes: usize, limit: usize, }, MergeOutOfGrid, InvalidSheetLayout(String), InvalidSheetViewZoom { value: u16, }, InvalidChartReference(String), InvalidSparklineReference(String), InvalidConditionalFormatRule(String), InvalidDataValidationRule(String), InvalidSheetName(String), DuplicateSheetName(String), TooManySheets, ActiveSheetOutOfRange { index: usize, sheets: usize, }, InvalidPageSetupScale { value: u16, }, InvalidPageSetupMargins, InvalidDocPropertyTimestamp(String), }",
      "inherent_items": [],
      "kind": "enum",
      "path": "rxls::WriteError",
      "trait_implementations": [
        "impl Clone for WriteError",
        "impl Debug for WriteError",
        "impl Display for WriteError",
        "impl Eq for WriteError",
        "impl Error for WriteError",
        "impl PartialEq for WriteError",
        "impl StructuralPartialEq for WriteError"
      ]
    },
    {
      "declaration": "pub fn deserialize_as_date_1900_or_none<'de, D>( deserializer: D, ) -> Result<Option<NaiveDate>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_date_1900_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_date_1900_or_string<'de, D>( deserializer: D, ) -> Result<Result<NaiveDate, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_date_1900_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_date_1904_or_none<'de, D>( deserializer: D, ) -> Result<Option<NaiveDate>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_date_1904_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_date_1904_or_string<'de, D>( deserializer: D, ) -> Result<Result<NaiveDate, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_date_1904_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_datetime_1900_or_none<'de, D>( deserializer: D, ) -> Result<Option<NaiveDateTime>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_datetime_1900_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_datetime_1900_or_string<'de, D>( deserializer: D, ) -> Result<Result<NaiveDateTime, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_datetime_1900_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_datetime_1904_or_none<'de, D>( deserializer: D, ) -> Result<Option<NaiveDateTime>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_datetime_1904_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_datetime_1904_or_string<'de, D>( deserializer: D, ) -> Result<Result<NaiveDateTime, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_datetime_1904_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_duration_or_none<'de, D>( deserializer: D, ) -> Result<Option<Duration>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_duration_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_duration_or_string<'de, D>( deserializer: D, ) -> Result<Result<Duration, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_duration_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_f64_or_none<'de, D>( deserializer: D, ) -> Result<Option<f64>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_f64_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_f64_or_string<'de, D>( deserializer: D, ) -> Result<Result<f64, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_f64_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_i64_or_none<'de, D>( deserializer: D, ) -> Result<Option<i64>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_i64_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_i64_or_string<'de, D>( deserializer: D, ) -> Result<Result<i64, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_i64_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_time_1900_or_none<'de, D>( deserializer: D, ) -> Result<Option<NaiveTime>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_time_1900_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_time_1900_or_string<'de, D>( deserializer: D, ) -> Result<Result<NaiveTime, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_time_1900_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_time_1904_or_none<'de, D>( deserializer: D, ) -> Result<Option<NaiveTime>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_time_1904_or_none",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn deserialize_as_time_1904_or_string<'de, D>( deserializer: D, ) -> Result<Result<NaiveTime, String>, D::Error>where D: Deserializer<'de>,",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::deserialize_as_time_1904_or_string",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn excel_serial_to_datetime( serial: f64, date1904: bool, ) -> Option<ExcelDateTime>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::excel_serial_to_datetime",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn excel_serial_to_duration(serial: f64) -> Option<Duration>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::excel_serial_to_duration",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn excel_serial_to_naive_datetime( serial: f64, date1904: bool, ) -> Option<NaiveDateTime>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::excel_serial_to_naive_datetime",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn export_csv( sheet: &Sheet, options: CsvOptions, ) -> Result<String, CsvExportError>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::export_csv",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn extract_text(bytes: &[u8]) -> Result<String>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::extract_text",
      "trait_implementations": []
    },
    {
      "declaration": "pub mod wasm",
      "inherent_items": [],
      "kind": "module",
      "path": "rxls::wasm",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn extract_text_bytes(bytes: &[u8]) -> Result<String>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::wasm::extract_text_bytes",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn report_json_bytes(bytes: &[u8]) -> Result<String>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::wasm::report_json_bytes",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn to_csv_bytes(bytes: &[u8], sheet_index: usize) -> Result<String>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::wasm::to_csv_bytes",
      "trait_implementations": []
    },
    {
      "declaration": "pub fn to_html_bytes(bytes: &[u8], sheet_index: usize) -> Result<String>",
      "inherent_items": [],
      "kind": "fn",
      "path": "rxls::wasm::to_html_bytes",
      "trait_implementations": []
    }
  ],
  "schema": "rxls.public-api.v1",
  "summary": {
    "by_kind": {
      "constant": 2,
      "enum": 25,
      "fn": 27,
      "module": 1,
      "struct": 49,
      "trait": 2,
      "type": 6
    },
    "items": 112
  }
}