chisel-json 0.1.4

Simple JSON parser for Rust
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
!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
A	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A> Tuple for (A,)$/;"	c
AccessError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    AccessError {$/;"	e	enum:Error
ActualSamplingMode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl ActualSamplingMode {$/;"	c
ActualSamplingMode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub(crate) enum ActualSamplingMode {$/;"	g
AdjustedMantissa	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^impl AdjustedMantissa {$/;"	c
AdjustedMantissa	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^pub struct AdjustedMantissa {$/;"	s
Append	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^trait Append<T> {$/;"	i
Array	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    Array(Vec<JsonValue<'a>>),$/;"	e	enum:JsonValue
ArrayElement	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    ArrayElement(usize),$/;"	e	enum:PathElement
AsciiStr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^impl<'a> AsciiStr<'a> {$/;"	c
AsciiStr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^pub struct AsciiStr<'a> {$/;"	s
AsyncBencher	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^impl<'a, 'b, A: AsyncExecutor, M: Measurement> AsyncBencher<'a, 'b, A, M> {$/;"	c
AsyncBencher	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^pub struct AsyncBencher<'a, 'b, A: AsyncExecutor, M: Measurement = WallTime> {$/;"	s
AsyncExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^pub trait AsyncExecutor {$/;"	i
AsyncStdExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^impl AsyncExecutor for AsyncStdExecutor {$/;"	c
AsyncStdExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^pub struct AsyncStdExecutor;$/;"	s
Auto	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Auto,$/;"	e	enum:SamplingMode
AxisScale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<crate::AxisScale> for AxisScale {$/;"	c
AxisScale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub enum AxisScale {$/;"	g
AxisScale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub enum AxisScale {$/;"	g
AxisScale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/summary.rs	/^impl AxisScale {$/;"	c
B	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const B: u64 = 1;$/;"	C
B	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B> Tuple for (A, B)$/;"	c
BENCHMARK_HELLO_SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^const BENCHMARK_HELLO_SIZE: usize = 9 \/\/BENCHMARK_MAGIC_NUMBER.len() \/\/ magic number$/;"	C
BENCHMARK_MAGIC_NUMBER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^const BENCHMARK_MAGIC_NUMBER: &str = "Criterion";$/;"	C
BUCKETS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub const BUCKETS: usize = 1 << 12;$/;"	C
BUCKETS_ASSOCIATIVITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub const BUCKETS_ASSOCIATIVITY: usize = 4;$/;"	C
BUFFER_LENGTH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub const BUFFER_LENGTH: usize = (1 << 18) \/ std::mem::size_of::<Entry<UnresolvedFrames>>();$/;"	C
Bandwidth	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^impl Bandwidth {$/;"	c
Bandwidth	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^pub enum Bandwidth {$/;"	g
Baseline	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub enum Baseline {$/;"	g
BatchSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl BatchSize {$/;"	c
BatchSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub enum BatchSize {$/;"	g
BeginningBenchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    BeginningBenchmark {$/;"	e	enum:OutgoingMessage
BeginningBenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    BeginningBenchmarkGroup {$/;"	e	enum:OutgoingMessage
Bencher	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^impl<'a, M: Measurement> Bencher<'a, M> {$/;"	c
Bencher	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^pub struct Bencher<'a, M: Measurement = WallTime> {$/;"	s
BencherReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl Report for BencherReport {$/;"	c
BencherReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub struct BencherReport;$/;"	s
Benchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Benchmark,$/;"	e	enum:Mode
BenchmarkConfig	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^pub struct BenchmarkConfig {$/;"	s
BenchmarkConfig	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<&crate::benchmark::BenchmarkConfig> for BenchmarkConfig {$/;"	c
BenchmarkConfig	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub struct BenchmarkConfig {$/;"	s
BenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^impl<'a, M: Measurement> BenchmarkGroup<'a, M> {$/;"	c
BenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^impl<'a, M: Measurement> Drop for BenchmarkGroup<'a, M> {$/;"	c
BenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^pub struct BenchmarkGroup<'a, M: Measurement> {$/;"	s
BenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^impl<'a> BenchmarkGroup<'a> {$/;"	c
BenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct BenchmarkGroup<'a> {$/;"	s
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    impl Sealed for super::BenchmarkId {}$/;"	c	module:private
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^impl BenchmarkId {$/;"	c
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^impl IntoBenchmarkId for BenchmarkId {$/;"	c
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^pub struct BenchmarkId {$/;"	s
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl BenchmarkId {$/;"	c
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl fmt::Debug for BenchmarkId {$/;"	c
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl fmt::Display for BenchmarkId {$/;"	c
BenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub struct BenchmarkId {$/;"	s
BenchmarkValueGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct BenchmarkValueGroup<'a> {$/;"	s
Boolean	/home/jcoombes/Src/chisel-json/src/events.rs	/^    Boolean(bool),$/;"	e	enum:Match
Boolean	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Boolean(bool),$/;"	e	enum:Token
Boolean	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    Boolean(bool),$/;"	e	enum:JsonValue
Bucket	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Eq + Default> Default for Bucket<T> {$/;"	c
Bucket	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Eq> Bucket<T> {$/;"	c
Bucket	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct Bucket<T: 'static> {$/;"	s
BucketIterator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<'a, T> Iterator for BucketIterator<'a, T> {$/;"	c
BucketIterator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct BucketIterator<'a, T: 'static> {$/;"	s
Builder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Builder = (Vec<A>, Vec<B>);$/;"	t
Builder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Builder = (Vec<A>, Vec<B>, Vec<C>);$/;"	t
Builder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Builder = (Vec<A>, Vec<B>, Vec<C>, Vec<D>);$/;"	t
Builder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Builder = (Vec<A>,);$/;"	t
Builder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Builder: TupledDistributionsBuilder<Item = Self>;$/;"	t	interface:Tuple
Byte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    Byte,$/;"	e	enum:Unit
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl Add<ByteSize> for ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl AddAssign<ByteSize> for ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl Debug for ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl Display for ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl Serialize for ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl<'de> Deserialize<'de> for ByteSize {$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl<T> Add<T> for ByteSize$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl<T> AddAssign<T> for ByteSize$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl<T> Mul<T> for ByteSize$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^impl<T> MulAssign<T> for ByteSize$/;"	c
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub struct ByteSize(pub u64);$/;"	s
ByteSize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^impl std::str::FromStr for ByteSize {$/;"	c
ByteSizeVistor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^        impl<'de> de::Visitor<'de> for ByteSizeVistor {$/;"	c	method:ByteSize::deserialize
ByteSizeVistor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^        struct ByteSizeVistor;$/;"	s	method:ByteSize::deserialize
ByteSlice	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^pub trait ByteSlice: AsRef<[u8]> + AsMut<[u8]> {$/;"	i
Bytes	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Bytes(u64),$/;"	e	enum:Throughput
Bytes	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Bytes,$/;"	e	enum:ValueType
BytesDecimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    BytesDecimal(u64),$/;"	e	enum:Throughput
C	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B, C> Tuple for (A, B, C)$/;"	c
CHANGE_STATS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^const CHANGE_STATS: [Statistic; 2] = [Statistic::Mean, Statistic::Median];$/;"	C
CHECK_LENGTH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    const CHECK_LENGTH: usize = 2 * size_of::<*const libc::c_void>() \/ size_of::<u8>();$/;"	C	function:validate
COMPARISON_COLORS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/summary.rs	/^static COMPARISON_COLORS: [Color; NUM_COLORS] = [$/;"	v
COMPARISON_COLORS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^static COMPARISON_COLORS: [RGBColor; NUM_COLORS] = [$/;"	v
COUNT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    const COUNT: &str = "count";$/;"	C	module:protobuf
CPU	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    const CPU: &str = "cpu";$/;"	C	module:protobuf
ChangeDistributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^impl ChangeDistributions {$/;"	c
ChangeDistributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct ChangeDistributions {$/;"	s
ChangeEstimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^impl ChangeEstimates {$/;"	c
ChangeEstimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct ChangeEstimates {$/;"	s
ChangePointEstimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct ChangePointEstimates {$/;"	s
CliReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl CliReport {$/;"	c
CliReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl Report for CliReport {$/;"	c
CliReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub(crate) struct CliReport {$/;"	s
CliVerbosity	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub(crate) enum CliVerbosity {$/;"	g
Collector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Hash + Eq + 'static> Collector<T> {$/;"	c
Collector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Hash + Eq + Default + Debug + 'static> Collector<T> {$/;"	c
Collector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct Collector<T: Hash + Eq + 'static> {$/;"	s
Colon	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Colon,$/;"	e	enum:Token
Comma	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Comma,$/;"	e	enum:Token
CompareLenient	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    CompareLenient,$/;"	e	enum:Baseline
CompareStrict	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    CompareStrict,$/;"	e	enum:Baseline
Comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct Comparison {$/;"	s
ComparisonData	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub(crate) struct ComparisonData {$/;"	s
ComparisonResult	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^enum ComparisonResult {$/;"	g
ComparisonResult	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^enum ComparisonResult {$/;"	g
ConfidenceInterval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct ConfidenceInterval {$/;"	s
ConfidenceInterval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct ConfidenceInterval {$/;"	s
Connection	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl Connection {$/;"	c
Connection	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub struct Connection {$/;"	s
Context	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct Context {$/;"	s
Continue	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Continue,$/;"	e	enum:IncomingMessage
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Coords {$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Default for Coords {$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Display for Coords {$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Eq for Coords {}$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Ord for Coords {$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl PartialOrd<Self> for Coords {$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl std::ops::Sub for Coords {$/;"	c
Coords	/home/jcoombes/Src/chisel-json/src/coords.rs	/^pub struct Coords {$/;"	s
CopyError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    CopyError {$/;"	e	enum:Error
CreatingError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^    CreatingError,$/;"	e	enum:Error
Criterion	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl Default for Criterion {$/;"	c
Criterion	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl<M: Measurement> Criterion<M> {$/;"	c
Criterion	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl<M> Criterion<M>$/;"	c
Criterion	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub struct Criterion<M: Measurement = WallTime> {$/;"	s
CsvError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    CsvError(CsvError),$/;"	e	enum:Error
CsvReportWriter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^impl<W: Write> CsvReportWriter<W> {$/;"	c
CsvReportWriter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^struct CsvReportWriter<W: Write> {$/;"	s
CsvRow	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^struct CsvRow<'a> {$/;"	s
D	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B, C, D> Tuple for (A, B, C, D)$/;"	c
DARK_BLUE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^const DARK_BLUE: Color = Color::Rgb(31, 120, 180);$/;"	C
DARK_BLUE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^const DARK_BLUE: RGBColor = RGBColor(31, 120, 180);$/;"	C
DARK_ORANGE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^const DARK_ORANGE: Color = Color::Rgb(255, 127, 0);$/;"	C
DARK_ORANGE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^const DARK_ORANGE: RGBColor = RGBColor(255, 127, 0);$/;"	C
DARK_RED	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^const DARK_RED: Color = Color::Rgb(227, 26, 28);$/;"	C
DARK_RED	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^const DARK_RED: RGBColor = RGBColor(227, 26, 28);$/;"	C
DECIMAL_POINT_RANGE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub const DECIMAL_POINT_RANGE: i32 = 2047;$/;"	C	implementation:Decimal
DEFAULT_BUFFER_SIZE	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^const DEFAULT_BUFFER_SIZE: usize = 4096;$/;"	C
DEFAULT_FONT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^static DEFAULT_FONT: &str = "Helvetica";$/;"	v
DEFAULT_FONT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^static DEFAULT_FONT: FontFamily = FontFamily::SansSerif;$/;"	v
DOUBLE_BYTE_MASK	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const DOUBLE_BYTE_MASK: u32 = 0b0001_1111;$/;"	C
Data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^impl<'a, X, Y> Clone for Data<'a, X, Y> {$/;"	c
Data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^impl<'a, X, Y> Copy for Data<'a, X, Y> {}$/;"	c
Data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^impl<'a, X, Y> Data<'a, X, Y> {$/;"	c
Data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^impl<'a, X, Y> Data<'a, X, Y>$/;"	c
Data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^pub struct Data<'a, X, Y>(&'a [X], &'a [Y]);$/;"	s
Decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^impl Debug for Decimal {$/;"	c
Decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^impl Decimal {$/;"	c
Decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^impl Default for Decimal {$/;"	c
Decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^impl Eq for Decimal {}$/;"	c
Decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^impl PartialEq for Decimal {$/;"	c
Decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^pub struct Decimal {$/;"	s
DecoderError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^impl Display for DecoderError {$/;"	c
DecoderError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^pub struct DecoderError {$/;"	s
DecoderErrorCode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^pub enum DecoderErrorCode {$/;"	g
DecoderResult	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^pub type DecoderResult<T> = Result<T, DecoderError>;$/;"	t
Deserialization	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Deserialization(ciborium::de::Error<std::io::Error>),$/;"	e	enum:MessageError
Details	/home/jcoombes/Src/chisel-json/src/errors.rs	/^impl Display for Details {$/;"	c
Details	/home/jcoombes/Src/chisel-json/src/errors.rs	/^pub enum Details {$/;"	g
Discard	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Discard,$/;"	e	enum:Baseline
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^impl<A> Deref for Distribution<A> {$/;"	c
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^impl<A> Distribution<A>$/;"	c
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^pub struct Distribution<A>(Box<[A]>);$/;"	s
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B, C, D> TupledDistributions$/;"	c
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B, C> TupledDistributions for (Distribution<A>, Distribution<B>, Distribution<C>)$/;"	c
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B> TupledDistributions for (Distribution<A>, Distribution<B>)$/;"	c
Distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A> TupledDistributions for (Distribution<A>,)$/;"	c
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^impl Distributions {$/;"	c
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct Distributions {$/;"	s
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Distributions = ($/;"	t
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Distributions = (Distribution<A>, Distribution<B>);$/;"	t
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Distributions = (Distribution<A>, Distribution<B>, Distribution<C>);$/;"	t
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Distributions = (Distribution<A>,);$/;"	t
Distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Distributions: TupledDistributions<Item = Self>;$/;"	t	interface:Tuple
Duration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<std::time::Duration> for Duration {$/;"	c
Duration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^struct Duration {$/;"	s
DurationFormatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^impl DurationFormatter {$/;"	c
DurationFormatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^impl ValueFormatter for DurationFormatter {$/;"	c
DurationFormatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^pub(crate) struct DurationFormatter;$/;"	s
Elements	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Elements(u64),$/;"	e	enum:Throughput
Elements	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Elements,$/;"	e	enum:ValueType
EndArray	/home/jcoombes/Src/chisel-json/src/events.rs	/^    EndArray,$/;"	e	enum:Match
EndArray	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    EndArray,$/;"	e	enum:Token
EndObject	/home/jcoombes/Src/chisel-json/src/events.rs	/^    EndObject,$/;"	e	enum:Match
EndObject	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    EndObject,$/;"	e	enum:Token
EndOfInput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^    EndOfInput,$/;"	e	enum:DecoderErrorCode
EndOfInput	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    EndOfInput,$/;"	e	enum:Details
EndOfInput	/home/jcoombes/Src/chisel-json/src/events.rs	/^    EndOfInput,$/;"	e	enum:Match
EndOfInput	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    EndOfInput,$/;"	e	enum:Token
Entry	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Default> Default for Entry<T> {$/;"	c
Entry	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct Entry<T> {$/;"	s
Err	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    type Err = String;$/;"	t	implementation:ByteSize
Err	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    type Err = String;$/;"	t	implementation:Unit
ErrnoProtector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl Drop for ErrnoProtector {$/;"	c
ErrnoProtector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl ErrnoProtector {$/;"	c
ErrnoProtector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^struct ErrnoProtector(libc::c_int);$/;"	s
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^impl From<CsvError> for Error {$/;"	c
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^impl StdError for Error {$/;"	c
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^impl fmt::Display for Error {$/;"	c
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^pub enum Error {$/;"	g
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^impl Display for Error {$/;"	c
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^impl std::error::Error for Error {$/;"	c
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^pub struct Error;$/;"	s
Error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^pub enum Error {$/;"	g
Error	/home/jcoombes/Src/chisel-json/src/errors.rs	/^impl Display for Error {$/;"	c
Error	/home/jcoombes/Src/chisel-json/src/errors.rs	/^pub struct Error {$/;"	s
Estimate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct Estimate {$/;"	s
Estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^impl Estimates {$/;"	c
Estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct Estimates {$/;"	s
Event	/home/jcoombes/Src/chisel-json/src/events.rs	/^pub struct Event<'a> {$/;"	s
ExternalProfiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^impl Profiler for ExternalProfiler {$/;"	c
ExternalProfiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^pub struct ExternalProfiler;$/;"	s
F	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/parse.rs	/^            *(&word as *const _ as *const F)$/;"	C	function:parse_float
F	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/parse.rs	/^            *(&word as *const _ as *const F).add(1)$/;"	C	function:parse_float
FALSE_PATTERN	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^const FALSE_PATTERN: [char; 5] = ['f', 'a', 'l', 's', 'e'];$/;"	C
FOLLOWING_BYTE_MASK	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const FOLLOWING_BYTE_MASK: u32 = 0b0011_1111;$/;"	C
FastFloat	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^pub trait FastFloat: float::Float {$/;"	i
FileCsvReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^impl FileCsvReport {$/;"	c
FileCsvReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^impl Report for FileCsvReport {$/;"	c
FileCsvReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^pub struct FileCsvReport;$/;"	s
FinishedBenchmarkGroup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    FinishedBenchmarkGroup {$/;"	e	enum:OutgoingMessage
Flamegraph	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    Flamegraph(Option<FlamegraphOptions<'a>>),$/;"	e	enum:Output
Flat	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Flat,$/;"	e	enum:SamplingMethod
Flat	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Flat,$/;"	e	enum:ActualSamplingMode
Flat	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Flat,$/;"	e	enum:SamplingMode
Float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/float.rs	/^pub trait Float:$/;"	i
Float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^pub trait Float:$/;"	i
Float	/home/jcoombes/Src/chisel-json/src/events.rs	/^    Float(f64),$/;"	e	enum:Match
Float	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Float(f64),$/;"	e	enum:Token
Float	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    Float(f64),$/;"	e	enum:JsonValue
FormatThroughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    FormatThroughput {$/;"	e	enum:IncomingMessage
FormatValue	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    FormatValue {$/;"	e	enum:IncomingMessage
FormattedValue	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    FormattedValue {$/;"	e	enum:OutgoingMessage
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^    type Frame = backtrace::Frame;$/;"	t	implementation:Trace
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^impl super::Frame for backtrace::Frame {$/;"	c
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    type Frame = Frame;$/;"	t	implementation:Trace
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^impl super::Frame for Frame {$/;"	c
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^pub struct Frame {$/;"	s
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    type Frame;$/;"	t	interface:Trace
Frame	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^pub trait Frame: Sized + Clone {$/;"	i
FramePointerLayout	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^struct FramePointerLayout {$/;"	s
Frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Debug for Frames {$/;"	c
Frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Eq for Frames {}$/;"	c
Frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Frames {$/;"	c
Frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl From<UnresolvedFrames> for Frames {$/;"	c
Frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^pub struct Frames {$/;"	s
FramesPostProcessor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^type FramesPostProcessor = Box<dyn Fn(&mut Frames)>;$/;"	t
Function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^impl<M: Measurement, F, T> Function<M, F, T>$/;"	c
Function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^impl<M: Measurement, F, T> Routine<M, T> for Function<M, F, T>$/;"	c
Function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^pub struct Function<M: Measurement, F, T>$/;"	s
FuturesExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^impl AsyncExecutor for FuturesExecutor {$/;"	c
FuturesExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^pub struct FuturesExecutor;$/;"	s
GB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const GB: u64 = 1_000_000_000;$/;"	C
GIB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const GIB: u64 = 1_073_741_824;$/;"	C
Gaussian	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^impl<A> Kernel<A> for Gaussian$/;"	c
Gaussian	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^pub struct Gaussian;$/;"	s
GibiByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    GibiByte,$/;"	e	enum:Unit
GigaByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    GigaByte,$/;"	e	enum:Unit
Gnuplot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Gnuplot,$/;"	e	enum:PlottingBackend
Gnuplot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^impl Plotter for Gnuplot {$/;"	c
Gnuplot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^pub(crate) struct Gnuplot {$/;"	s
HIGH_MILD	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^        static HIGH_MILD: Label = HighMild;$/;"	v	function:index
HIGH_SEVERE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^        static HIGH_SEVERE: Label = HighSevere;$/;"	v	function:index
HashCounter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Hash + Eq + Default + Debug> Default for HashCounter<T> {$/;"	c
HashCounter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Hash + Eq> HashCounter<T> {$/;"	c
HashCounter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct HashCounter<T: Hash + Eq + 'static> {$/;"	s
HighMild	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    HighMild,$/;"	e	enum:Label
HighSevere	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    HighSevere,$/;"	e	enum:Label
Html	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^impl Html {$/;"	c
Html	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^impl Report for Html {$/;"	c
Html	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^pub struct Html {$/;"	s
INFINITE_POWER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const INFINITE_POWER: i32 = 0x7FF;$/;"	C	implementation:f64
INFINITE_POWER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const INFINITE_POWER: i32 = 0xFF;$/;"	C	implementation:f32
INFINITE_POWER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const INFINITE_POWER: i32;$/;"	C	interface:Float
INFINITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const INFINITY: Self = core::f32::INFINITY;$/;"	C	implementation:f32
INFINITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const INFINITY: Self = core::f64::INFINITY;$/;"	C	implementation:f64
INFINITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const INFINITY: Self;$/;"	C	interface:Float
ITIMER_PROF	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^const ITIMER_PROF: c_int = 2;$/;"	C
Improved	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    Improved,$/;"	e	enum:ComparisonResult
Improved	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Improved,$/;"	e	enum:ComparisonResult
IncomingMessage	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub enum IncomingMessage {$/;"	g
IndexContext	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct IndexContext<'a> {$/;"	s
IndividualBenchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^impl IndividualBenchmark {$/;"	c
IndividualBenchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct IndividualBenchmark {$/;"	s
InnerConnection	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl InnerConnection {$/;"	c
InnerConnection	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^struct InnerConnection {$/;"	s
Integer	/home/jcoombes/Src/chisel-json/src/events.rs	/^    Integer(i64),$/;"	e	enum:Match
Integer	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Integer(i64),$/;"	e	enum:Token
Integer	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    Integer(i64),$/;"	e	enum:JsonValue
Intermediate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    type Intermediate = Instant;$/;"	t	implementation:WallTime
Intermediate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    type Intermediate;$/;"	t	interface:Measurement
IntoBenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^pub trait IntoBenchmarkId: private::Sealed {$/;"	i
IntoIter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    type IntoIter = Iter<'a, A>;$/;"	t
InvalidArray	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidArray,$/;"	e	enum:Details
InvalidByteSequence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^    InvalidByteSequence,$/;"	e	enum:DecoderErrorCode
InvalidCharacter	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidCharacter(char),$/;"	e	enum:Details
InvalidEscapeSequence	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidEscapeSequence(String),$/;"	e	enum:Details
InvalidFile	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidFile,$/;"	e	enum:Details
InvalidNumericRepresentation	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidNumericRepresentation(String),$/;"	e	enum:Details
InvalidObject	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidObject,$/;"	e	enum:Details
InvalidRootObject	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidRootObject,$/;"	e	enum:Details
InvalidUnicodeEscapeSequence	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    InvalidUnicodeEscapeSequence(String),$/;"	e	enum:Details
Io	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Io(std::io::Error),$/;"	e	enum:MessageError
IoError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^    IoError(#[from] std::io::Error),$/;"	e	enum:Error
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    type Item = char;$/;"	t	implementation:Utf8Decoder
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    type Item = (&'a X, &'a Y);$/;"	t	implementation:Pairs
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Item = (A, B);$/;"	t
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Item = (A, B, C);$/;"	t
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Item = (A, B, C, D);$/;"	t
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Item = (A,);$/;"	t
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Item: Tuple<Builder = Self>;$/;"	t	interface:TupledDistributionsBuilder
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    type Item: Tuple<Distributions = Self>;$/;"	t	interface:TupledDistributions
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    type Item = (A, Label);$/;"	t
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    type Item = &'a Entry<T>;$/;"	t	implementation:BucketIterator
Item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    type Item = &'a T;$/;"	t	implementation:TempFdArrayIterator
Iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^impl<'a, A> Iterator for Iter<'a, A>$/;"	c
Iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^pub struct Iter<'a, A>$/;"	s
Itimerval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^struct Itimerval {$/;"	s
JsonValue	/home/jcoombes/Src/chisel-json/src/lib.rs	/^pub enum JsonValue<'a> {$/;"	g
KB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const KB: u64 = 1_000;$/;"	C
KDE_POINTS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^static KDE_POINTS: usize = 500;$/;"	v
KDE_POINTS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^static KDE_POINTS: usize = 500;$/;"	v
KIB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const KIB: u64 = 1_024;$/;"	C
Kde	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^impl<'a, A, K> Kde<'a, A, K>$/;"	c
Kde	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^pub struct Kde<'a, A, K>$/;"	s
Kernel	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^pub trait Kernel<A>: Copy + Sync$/;"	i
KibiByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    KibiByte,$/;"	e	enum:Unit
KiloByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    KiloByte,$/;"	e	enum:Unit
LARGEST_POWER_OF_FIVE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^pub const LARGEST_POWER_OF_FIVE: i32 = 308;$/;"	C
LARGEST_POWER_OF_TEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const LARGEST_POWER_OF_TEN: i32 = 308;$/;"	C	implementation:f64
LARGEST_POWER_OF_TEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const LARGEST_POWER_OF_TEN: i32 = 38;$/;"	C	implementation:f32
LARGEST_POWER_OF_TEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const LARGEST_POWER_OF_TEN: i32;$/;"	C	interface:Float
LINEWIDTH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^const LINEWIDTH: LineWidth = LineWidth(2.);$/;"	C
LN_KB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^static LN_KB: f64 = 6.931471806; \/\/ ln 1024$/;"	v
LN_KIB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^static LN_KIB: f64 = 6.907755279; \/\/ ln 1000$/;"	v
LOW_MILD	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^        static LOW_MILD: Label = LowMild;$/;"	v	function:index
LOW_SEVERE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^        static LOW_SEVERE: Label = LowSevere;$/;"	v	function:index
Label	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^impl Label {$/;"	c
Label	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^pub enum Label {$/;"	g
LabeledSample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^impl<'a, 'b, A> IntoIterator for &'b LabeledSample<'a, A>$/;"	c
LabeledSample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^impl<'a, A> Deref for LabeledSample<'a, A>$/;"	c
LabeledSample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^impl<'a, A> Index<usize> for LabeledSample<'a, A>$/;"	c
LabeledSample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^impl<'a, A> LabeledSample<'a, A>$/;"	c
LabeledSample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^pub struct LabeledSample<'a, A>$/;"	s
LargeInput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    LargeInput,$/;"	e	enum:BatchSize
Lexer	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    Lexer,$/;"	e	enum:Stage
Lexer	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^impl<B: BufRead> Lexer<B> {$/;"	c
Lexer	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^pub struct Lexer<B: BufRead> {$/;"	s
Linear	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Linear,$/;"	e	enum:AxisScale
Linear	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Linear,$/;"	e	enum:SamplingMethod
Linear	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Linear,$/;"	e	enum:ActualSamplingMode
Linear	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Linear,$/;"	e	enum:AxisScale
Linear	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Linear,$/;"	e	enum:SamplingMode
List	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    List,$/;"	e	enum:Mode
Logarithmic	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Logarithmic,$/;"	e	enum:AxisScale
Logarithmic	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Logarithmic,$/;"	e	enum:AxisScale
LowMild	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    LowMild,$/;"	e	enum:Label
LowSevere	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    LowSevere,$/;"	e	enum:Label
MANTISSA_EXPLICIT_BITS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MANTISSA_EXPLICIT_BITS: usize = 23;$/;"	C	implementation:f32
MANTISSA_EXPLICIT_BITS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MANTISSA_EXPLICIT_BITS: usize = 52;$/;"	C	implementation:f64
MANTISSA_EXPLICIT_BITS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MANTISSA_EXPLICIT_BITS: usize;$/;"	C	interface:Float
MASK	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    const MASK: u64 = 0x0000_00FF_0000_00FF;$/;"	C	function:parse_8digits_le
MAX_DEPTH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^pub const MAX_DEPTH: usize = 128;$/;"	C
MAX_DIGITS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub const MAX_DIGITS: usize = 768;$/;"	C	implementation:Decimal
MAX_DIGITS_WITHOUT_OVERFLOW	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub const MAX_DIGITS_WITHOUT_OVERFLOW: usize = 19;$/;"	C	implementation:Decimal
MAX_DIRECTORY_NAME_LEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^const MAX_DIRECTORY_NAME_LEN: usize = 64;$/;"	C
MAX_EXPONENT_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_EXPONENT_FAST_PATH: i64 = 10;$/;"	C	implementation:f32
MAX_EXPONENT_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_EXPONENT_FAST_PATH: i64 = 22;$/;"	C	implementation:f64
MAX_EXPONENT_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_EXPONENT_FAST_PATH: i64;$/;"	C	interface:Float
MAX_EXPONENT_ROUND_TO_EVEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_EXPONENT_ROUND_TO_EVEN: i32 = 10;$/;"	C	implementation:f32
MAX_EXPONENT_ROUND_TO_EVEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_EXPONENT_ROUND_TO_EVEN: i32 = 23;$/;"	C	implementation:f64
MAX_EXPONENT_ROUND_TO_EVEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_EXPONENT_ROUND_TO_EVEN: i32;$/;"	C	interface:Float
MAX_MANTISSA_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MAX_MANTISSA_FAST_PATH: u64 = 2_u64 << Self::MANTISSA_EXPLICIT_BITS;$/;"	C	interface:Float
MAX_SHIFT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/simple.rs	/^    const MAX_SHIFT: usize = 60;$/;"	C	function:parse_long_mantissa
MAX_THREAD_NAME	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^pub const MAX_THREAD_NAME: usize = 16;$/;"	C
MAX_TITLE_LEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^const MAX_TITLE_LEN: usize = 100;$/;"	C
MB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const MB: u64 = 1_000_000;$/;"	C
MEM_VALIDATE_PIPE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^static MEM_VALIDATE_PIPE: Pipes = Pipes {$/;"	v
MIB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const MIB: u64 = 1_048_576;$/;"	C
MINIMUM_EXPONENT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MINIMUM_EXPONENT: i32 = -1023;$/;"	C	implementation:f64
MINIMUM_EXPONENT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MINIMUM_EXPONENT: i32 = -127;$/;"	C	implementation:f32
MINIMUM_EXPONENT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MINIMUM_EXPONENT: i32;$/;"	C	interface:Float
MIN_19DIGIT_INT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^const MIN_19DIGIT_INT: u64 = 100_0000_0000_0000_0000;$/;"	C
MIN_EXPONENT_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MIN_EXPONENT_FAST_PATH: i64 = -10; \/\/ assuming FLT_EVAL_METHOD = 0$/;"	C	implementation:f32
MIN_EXPONENT_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MIN_EXPONENT_FAST_PATH: i64 = -22; \/\/ assuming FLT_EVAL_METHOD = 0$/;"	C	implementation:f64
MIN_EXPONENT_FAST_PATH	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MIN_EXPONENT_FAST_PATH: i64;$/;"	C	interface:Float
MIN_EXPONENT_ROUND_TO_EVEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MIN_EXPONENT_ROUND_TO_EVEN: i32 = -17;$/;"	C	implementation:f32
MIN_EXPONENT_ROUND_TO_EVEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MIN_EXPONENT_ROUND_TO_EVEN: i32 = -4;$/;"	C	implementation:f64
MIN_EXPONENT_ROUND_TO_EVEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const MIN_EXPONENT_ROUND_TO_EVEN: i32;$/;"	C	interface:Float
MUL1	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    const MUL1: u64 = 0x000F_4240_0000_0064;$/;"	C	function:parse_8digits_le
MUL2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    const MUL2: u64 = 0x0000_2710_0000_0001;$/;"	C	function:parse_8digits_le
Match	/home/jcoombes/Src/chisel-json/src/events.rs	/^pub enum Match<'a> {$/;"	g
MatchFailed	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    MatchFailed(String, String),$/;"	e	enum:Details
Mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    Mean,$/;"	e	enum:Statistic
Measurement	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^pub trait Measurement {$/;"	i
MeasurementComplete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    MeasurementComplete {$/;"	e	enum:OutgoingMessage
MeasurementData	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl<'a> MeasurementData<'a> {$/;"	c
MeasurementData	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub(crate) struct MeasurementData<'a> {$/;"	s
MeasurementStart	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    MeasurementStart {$/;"	e	enum:OutgoingMessage
MebiByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    MebiByte,$/;"	e	enum:Unit
Median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    Median,$/;"	e	enum:Statistic
MedianAbsDev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    MedianAbsDev,$/;"	e	enum:Statistic
MegaByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    MegaByte,$/;"	e	enum:Unit
MessageError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<ciborium::de::Error<std::io::Error>> for MessageError {$/;"	c
MessageError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<ciborium::ser::Error<std::io::Error>> for MessageError {$/;"	c
MessageError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<std::io::Error> for MessageError {$/;"	c
MessageError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl std::error::Error for MessageError {$/;"	c
MessageError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl std::fmt::Display for MessageError {$/;"	c
MessageError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub enum MessageError {$/;"	g
Metadata	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    struct Metadata {$/;"	s	function:cargo_target_directory
Mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl Mode {$/;"	c
Mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub(crate) enum Mode {$/;"	g
NAN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NAN: Self = core::f32::NAN;$/;"	C	implementation:f32
NAN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NAN: Self = core::f64::NAN;$/;"	C	implementation:f64
NAN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NAN: Self;$/;"	C	interface:Float
NANOSECONDS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    const NANOSECONDS: &str = "nanoseconds";$/;"	C	module:protobuf
NEG_INFINITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NEG_INFINITY: Self = core::f32::NEG_INFINITY;$/;"	C	implementation:f32
NEG_INFINITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NEG_INFINITY: Self = core::f64::NEG_INFINITY;$/;"	C	implementation:f64
NEG_INFINITY	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NEG_INFINITY: Self;$/;"	C	interface:Float
NEG_NAN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NEG_NAN: Self = -core::f32::NAN;$/;"	C	implementation:f32
NEG_NAN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NEG_NAN: Self = -core::f64::NAN;$/;"	C	implementation:f64
NEG_NAN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const NEG_NAN: Self;$/;"	C	interface:Float
NOT_AN_OUTLIER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^        static NOT_AN_OUTLIER: Label = NotAnOutlier;$/;"	v	function:index
NULL_PATTERN	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^const NULL_PATTERN: [char; 4] = ['n', 'u', 'l', 'l'];$/;"	C
NUM_COLORS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/summary.rs	/^const NUM_COLORS: usize = 8;$/;"	C
NUM_COLORS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^const NUM_COLORS: usize = 8;$/;"	C
NUM_POWERS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/simple.rs	/^    const NUM_POWERS: usize = 19;$/;"	C	function:parse_long_mantissa
N_POWERS_OF_FIVE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^pub const N_POWERS_OF_FIVE: usize = (LARGEST_POWER_OF_FIVE - SMALLEST_POWER_OF_FIVE + 1) as usiz/;"	C
NixError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^    NixError(#[from] nix::Error),$/;"	e	enum:Error
NonSignificant	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    NonSignificant,$/;"	e	enum:ComparisonResult
NonSignificant	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    NonSignificant,$/;"	e	enum:ComparisonResult
NonUtf8InputDetected	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    NonUtf8InputDetected,$/;"	e	enum:Details
None	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    None,$/;"	e	enum:PlottingBackend
Normal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Normal,$/;"	e	enum:CliVerbosity
NotAnOutlier	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    NotAnOutlier,$/;"	e	enum:Label
NotRunning	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^    NotRunning,$/;"	e	enum:Error
Null	/home/jcoombes/Src/chisel-json/src/events.rs	/^    Null,$/;"	e	enum:Match
Null	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Null,$/;"	e	enum:Token
Null	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    Null,$/;"	e	enum:JsonValue
NumBatches	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    NumBatches(u64),$/;"	e	enum:BatchSize
NumIterations	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    NumIterations(u64),$/;"	e	enum:BatchSize
Number	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^impl Number {$/;"	c
Number	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^pub struct Number {$/;"	s
Object	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    Object(Vec<(String, JsonValue<'a>)>),$/;"	e	enum:JsonValue
ObjectKey	/home/jcoombes/Src/chisel-json/src/events.rs	/^    ObjectKey(Cow<'a, str>),$/;"	e	enum:Match
ObjectKey	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    ObjectKey(u64),$/;"	e	enum:PathElement
ObjectRoot	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    ObjectRoot,$/;"	e	enum:PathElement
One	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    One,$/;"	e	enum:Tails
OutgoingMessage	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub enum OutgoingMessage<'a> {$/;"	g
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    type Output = ByteSize;$/;"	t
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    type Output = ByteSize;$/;"	t	implementation:ByteSize
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        type Output = f64;$/;"	t	implementation:impl_ops::Unit
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        type Output = f64;$/;"	t	implementation:impl_ops::f64
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        type Output = u64;$/;"	t	implementation:impl_ops::Unit
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        type Output = u64;$/;"	t	implementation:impl_ops::u64
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    type Output = Label;$/;"	t
Output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^pub enum Output<'a> {$/;"	g
Output	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    type Output = usize;$/;"	t	implementation:Coords
PB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const PB: u64 = 1_000_000_000_000_000;$/;"	C
PIB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const PIB: u64 = 1_125_899_906_842_624;$/;"	C
POINT_SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^const POINT_SIZE: PointSize = PointSize(0.75);$/;"	C
POINT_SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^static POINT_SIZE: u32 = 3;$/;"	v
POWERS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/simple.rs	/^    const POWERS: [u8; 19] = [$/;"	C	function:parse_long_mantissa
POWER_OF_FIVE_128	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^pub const POWER_OF_FIVE_128: [(u64, u64); N_POWERS_OF_FIVE] = [$/;"	C
PProfProfiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^impl<'a, 'b> PProfProfiler<'a, 'b> {$/;"	c
PProfProfiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^impl<'a, 'b> Profiler for PProfProfiler<'a, 'b> {$/;"	c
PProfProfiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^pub struct PProfProfiler<'a, 'b> {$/;"	s
PROFILER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^pub(crate) static PROFILER: Lazy<RwLock<Result<Profiler>>> =$/;"	v
PROTOCOL_FORMAT	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^const PROTOCOL_FORMAT: u16 = 1;$/;"	C
PROTOCOL_VERSION	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^const PROTOCOL_VERSION: u16 = 1;$/;"	C
PackedToken	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^pub type PackedToken<'a> = (Token, Span);$/;"	t
Pair	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    Pair,$/;"	e	enum:SequenceType
PairExpected	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    PairExpected,$/;"	e	enum:Details
Pairs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^impl<'a, X, Y> Iterator for Pairs<'a, X, Y> {$/;"	c
Pairs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^pub struct Pairs<'a, X: 'a, Y: 'a> {$/;"	s
Parser	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    Parser,$/;"	e	enum:Stage
Parser	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^impl Parser {$/;"	c
Parser	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^pub struct Parser {$/;"	s
Parser	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^impl Parser {$/;"	c
Parser	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^pub struct Parser {$/;"	s
ParserResult	/home/jcoombes/Src/chisel-json/src/errors.rs	/^pub type ParserResult<T> = Result<T, Error>;$/;"	t
PartialBenchmarkConfig	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^impl PartialBenchmarkConfig {$/;"	c
PartialBenchmarkConfig	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^pub(crate) struct PartialBenchmarkConfig {$/;"	s
PathElement	/home/jcoombes/Src/chisel-json/src/paths.rs	/^pub enum PathElement {$/;"	g
PathElementStack	/home/jcoombes/Src/chisel-json/src/paths.rs	/^impl PathElementStack {$/;"	c
PathElementStack	/home/jcoombes/Src/chisel-json/src/paths.rs	/^pub struct PathElementStack {$/;"	s
PebiByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    PebiByte,$/;"	e	enum:Unit
PerIteration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    PerIteration,$/;"	e	enum:BatchSize
Percentiles	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^impl<A> Percentiles<A>$/;"	c
Percentiles	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^pub struct Percentiles<A>(Box<[A]>)$/;"	s
PetaByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    PetaByte,$/;"	e	enum:Unit
Pipes	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^struct Pipes {$/;"	s
Plot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^impl Plot {$/;"	c
Plot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct Plot {$/;"	s
PlotConfiguration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<&crate::PlotConfiguration> for PlotConfiguration {$/;"	c
PlotConfiguration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub struct PlotConfiguration {$/;"	s
PlotConfiguration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl Default for PlotConfiguration {$/;"	c
PlotConfiguration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl PlotConfiguration {$/;"	c
PlotConfiguration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub struct PlotConfiguration {$/;"	s
PlotContext	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^impl<'a> PlotContext<'a> {$/;"	c
PlotContext	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^pub(crate) struct PlotContext<'a> {$/;"	s
PlotData	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^impl<'a> PlotData<'a> {$/;"	c
PlotData	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^pub(crate) struct PlotData<'a> {$/;"	s
Plotter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^pub(crate) trait Plotter {$/;"	i
Plotters	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Plotters,$/;"	e	enum:PlottingBackend
PlottersBackend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^impl Plotter for PlottersBackend {$/;"	c
PlottersBackend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^pub struct PlottersBackend;$/;"	s
PlottingBackend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl PlottingBackend {$/;"	c
PlottingBackend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub enum PlottingBackend {$/;"	g
PointEstimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub struct PointEstimates {$/;"	s
Profile	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Profile(Duration),$/;"	e	enum:Mode
Profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^pub trait Profiler {$/;"	i
Profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl Profiler {$/;"	c
Profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^pub struct Profiler {$/;"	s
ProfilerGuard	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl ProfilerGuard<'_> {$/;"	c
ProfilerGuard	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl<'a> Drop for ProfilerGuard<'a> {$/;"	c
ProfilerGuard	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^pub struct ProfilerGuard<'a> {$/;"	s
ProfilerGuardBuilder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl Default for ProfilerGuardBuilder {$/;"	c
ProfilerGuardBuilder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^impl ProfilerGuardBuilder {$/;"	c
ProfilerGuardBuilder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^pub struct ProfilerGuardBuilder {$/;"	s
Protobuf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    Protobuf,$/;"	e	enum:Output
QUAD_BYTE_MASK	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const QUAD_BYTE_MASK: u32 = 0b0000_0111;$/;"	C
QUAD_HIGH_BOUND	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const QUAD_HIGH_BOUND: u32 = 0x10ffff;$/;"	C
Quad	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    Quad,$/;"	e	enum:SequenceType
Quiet	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Quiet,$/;"	e	enum:CliVerbosity
REPORT_STATS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^const REPORT_STATS: [Statistic; 7] = [$/;"	C
RUNNER_HELLO_SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^const RUNNER_HELLO_SIZE: usize = 15 \/\/RUNNER_MAGIC_NUMBER.len() \/\/ magic number$/;"	C
RUNNER_MAGIC_NUMBER	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^const RUNNER_MAGIC_NUMBER: &str = "cargo-criterion";$/;"	C
RawBenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<&InternalBenchmarkId> for RawBenchmarkId {$/;"	c
RawBenchmarkId	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub struct RawBenchmarkId {$/;"	s
Regressed	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    Regressed,$/;"	e	enum:ComparisonResult
Regressed	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Regressed,$/;"	e	enum:ComparisonResult
Report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub(crate) trait Report {$/;"	i
Report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    impl Report {$/;"	c	module:flamegraph
Report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    impl Report {$/;"	c	module:protobuf
Report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^impl Debug for Report {$/;"	c
Report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^pub struct Report {$/;"	s
ReportBuilder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^impl<'a> ReportBuilder<'a> {$/;"	c
ReportBuilder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^pub struct ReportBuilder<'a> {$/;"	s
ReportContext	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl ReportContext {$/;"	c
ReportContext	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub struct ReportContext {$/;"	s
ReportLink	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^impl<'a> ReportLink<'a> {$/;"	c
ReportLink	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct ReportLink<'a> {$/;"	s
ReportTiming	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^impl Default for ReportTiming {$/;"	c
ReportTiming	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^pub struct ReportTiming {$/;"	s
Reports	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^impl Report for Reports {$/;"	c
Reports	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub(crate) struct Reports {$/;"	s
Resamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^impl<'a, X, Y> Resamples<'a, X, Y>$/;"	c
Resamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^pub struct Resamples<'a, X, Y>$/;"	s
Resamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^impl<'a, A> Resamples<'a, A>$/;"	c
Resamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^pub struct Resamples<'a, A>$/;"	s
Result	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^pub type Result<T> = ::std::result::Result<T, Error>;$/;"	t
Result	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^pub type Result<T> = core::result::Result<T, Error>;$/;"	t
Result	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^pub type Result<T> = std::result::Result<T, Error>;$/;"	t
Rng	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/rand_util.rs	/^pub type Rng = Rand64;$/;"	t
Root	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    Root,$/;"	e	enum:PathElement
Routine	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^pub(crate) trait Routine<M: Measurement, T: ?Sized> {$/;"	i
Running	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/error.rs	/^    Running,$/;"	e	enum:Error
Runtime	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^impl AsyncExecutor for &tokio::runtime::Runtime {$/;"	c
Runtime	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^impl AsyncExecutor for tokio::runtime::Runtime {$/;"	c
S	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^        struct S {$/;"	s	function:tests::test_serde
S	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    impl<S: Into<String>> Sealed for S {}$/;"	c	module:private
S	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^impl<S: Into<String>> IntoBenchmarkId for S {$/;"	c
S	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^    type S = backtrace::Symbol;$/;"	t	implementation:Frame
S	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    type S = backtrace::Symbol;$/;"	t	implementation:Frame
S	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    type S: Symbol;$/;"	t	interface:Frame
SAMPLES	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    const SAMPLES: &str = "samples";$/;"	C	module:protobuf
SIGN_INDEX	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const SIGN_INDEX: usize = 31;$/;"	C	implementation:f32
SIGN_INDEX	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const SIGN_INDEX: usize = 63;$/;"	C	implementation:f64
SIGN_INDEX	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const SIGN_INDEX: usize;$/;"	C	interface:Float
SINGLE_BYTE_MASK	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const SINGLE_BYTE_MASK: u32 = 0b0111_1111;$/;"	C
SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^static SIZE: Size = Size(1280, 720);$/;"	v
SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^static SIZE: (u32, u32) = (960, 540);$/;"	v
SMALLEST_POWER_OF_FIVE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^pub const SMALLEST_POWER_OF_FIVE: i32 = -342;$/;"	C
SMALLEST_POWER_OF_TEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const SMALLEST_POWER_OF_TEN: i32 = -342;$/;"	C	implementation:f64
SMALLEST_POWER_OF_TEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const SMALLEST_POWER_OF_TEN: i32 = -65;$/;"	C	implementation:f32
SMALLEST_POWER_OF_TEN	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    const SMALLEST_POWER_OF_TEN: i32;$/;"	C	interface:Float
Sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^impl<A> Sample<A>$/;"	c
Sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^impl<A> ops::Deref for Sample<A> {$/;"	c
Sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^pub struct Sample<A>([A]);$/;"	s
SamplingMethod	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^impl From<crate::ActualSamplingMode> for SamplingMethod {$/;"	c
SamplingMethod	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^pub enum SamplingMethod {$/;"	g
SamplingMode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^impl SamplingMode {$/;"	c
SamplingMode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub enum SamplingMode {$/;"	g
Save	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Save,$/;"	e	enum:Baseline
SavedSample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub(crate) struct SavedSample {$/;"	s
ScaleForMachines	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    ScaleForMachines {$/;"	e	enum:IncomingMessage
ScaleThroughputs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    ScaleThroughputs {$/;"	e	enum:IncomingMessage
ScaleValues	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    ScaleValues {$/;"	e	enum:IncomingMessage
ScaledValues	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    ScaledValues {$/;"	e	enum:OutgoingMessage
Sealed	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub trait Sealed {}$/;"	i	module:private
Sealed	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    pub trait Sealed {}$/;"	i	module:private
SequenceType	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^enum SequenceType {$/;"	g
SerdeError	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    SerdeError {$/;"	e	enum:Error
Serialization	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Serialization(ciborium::ser::Error<std::io::Error>),$/;"	e	enum:MessageError
Silverman	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    Silverman,$/;"	e	enum:Bandwidth
Single	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    Single,$/;"	e	enum:SequenceType
SkippingBenchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    SkippingBenchmark {$/;"	e	enum:OutgoingMessage
Slope	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    Slope,$/;"	e	enum:Statistic
Slope	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/regression.rs	/^impl<A> Slope<A>$/;"	c
Slope	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/regression.rs	/^pub struct Slope<A>(pub A)$/;"	s
SmallInput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    SmallInput,$/;"	e	enum:BatchSize
SmolExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^impl AsyncExecutor for SmolExecutor {$/;"	c
SmolExecutor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^pub struct SmolExecutor;$/;"	s
Span	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Display for Span {$/;"	c
Span	/home/jcoombes/Src/chisel-json/src/coords.rs	/^impl Span {$/;"	c
Span	/home/jcoombes/Src/chisel-json/src/coords.rs	/^pub struct Span {$/;"	s
Stage	/home/jcoombes/Src/chisel-json/src/errors.rs	/^impl Display for Stage {$/;"	c
Stage	/home/jcoombes/Src/chisel-json/src/errors.rs	/^pub enum Stage {$/;"	g
StartArray	/home/jcoombes/Src/chisel-json/src/events.rs	/^    StartArray,$/;"	e	enum:Match
StartArray	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    StartArray,$/;"	e	enum:Token
StartObject	/home/jcoombes/Src/chisel-json/src/events.rs	/^    StartObject,$/;"	e	enum:Match
StartObject	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    StartObject,$/;"	e	enum:Token
StartOfInput	/home/jcoombes/Src/chisel-json/src/events.rs	/^    StartOfInput,$/;"	e	enum:Match
Statistic	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^impl fmt::Display for Statistic {$/;"	c
Statistic	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub enum Statistic {$/;"	g
StdDev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    StdDev,$/;"	e	enum:Statistic
Str	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    Str(String),$/;"	e	enum:Token
StreamFailure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^    StreamFailure,$/;"	e	enum:DecoderErrorCode
StreamFailure	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    StreamFailure,$/;"	e	enum:Details
String	/home/jcoombes/Src/chisel-json/src/events.rs	/^    String(Cow<'a, str>),$/;"	e	enum:Match
String	/home/jcoombes/Src/chisel-json/src/lib.rs	/^    String(Cow<'a, str>),$/;"	e	enum:JsonValue
SummaryContext	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^struct SummaryContext {$/;"	s
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^impl Symbol for backtrace::Symbol {$/;"	c
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^pub trait Symbol: Sized {$/;"	i
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Display for Symbol {$/;"	c
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Hash for Symbol {$/;"	c
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl PartialEq for Symbol {$/;"	c
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Symbol {$/;"	c
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl<T> From<&T> for Symbol$/;"	c
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^pub struct Symbol {$/;"	s
Symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^unsafe impl Send for Symbol {}$/;"	c
T	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^                unsafe { std::slice::from_raw_parts(self.file_vec.as_ptr() as *const T, length) /;"	C	method:TempFdArrayIterator::next
TABLE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    const TABLE: [u16; 65] = [$/;"	C	function:number_of_digits_decimal_left_shift
TABLE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^        const TABLE: [f32; 16] = [$/;"	C	method:f32::pow10_fast_path
TABLE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^        const TABLE: [f64; 32] = [$/;"	C	method:f64::pow10_fast_path
TABLE_POW5	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    const TABLE_POW5: [u8; 0x051C] = [$/;"	C	function:number_of_digits_decimal_left_shift
TB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const TB: u64 = 1_000_000_000_000;$/;"	C
THREAD	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    const THREAD: &str = "thread";$/;"	C	module:protobuf
THUMBNAIL_SIZE	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^const THUMBNAIL_SIZE: Option<Size> = Some(Size(450, 300));$/;"	C
TIB	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub const TIB: u64 = 1_099_511_627_776;$/;"	C
TRIPLE_BYTE_MASK	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const TRIPLE_BYTE_MASK: u32 = 0b0000_1111;$/;"	C
TRIPLE_EXCLUDED_HIGH_BOUND	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const TRIPLE_EXCLUDED_HIGH_BOUND: u32 = 0xdfff;$/;"	C
TRIPLE_EXCLUDED_LOW_BOUND	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^const TRIPLE_EXCLUDED_LOW_BOUND: u32 = 0xd800;$/;"	C
TRUE_PATTERN	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^const TRUE_PATTERN: [char; 4] = ['t', 'r', 'u', 'e'];$/;"	C
Tails	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^pub enum Tails {$/;"	g
Target	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    type Target = Sample<A>;$/;"	t	implementation:Distribution
Target	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    type Target = Sample<A>;$/;"	t
Target	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    type Target = [A];$/;"	t	implementation:Sample
TebiByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    TebiByte,$/;"	e	enum:Unit
TempFdArray	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T: Default + Debug> TempFdArray<T> {$/;"	c
TempFdArray	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<T> TempFdArray<T> {$/;"	c
TempFdArray	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct TempFdArray<T: 'static> {$/;"	s
TempFdArrayIterator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^impl<'a, T> Iterator for TempFdArrayIterator<'a, T> {$/;"	c
TempFdArrayIterator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^pub struct TempFdArrayIterator<'a, T> {$/;"	s
TeraByte	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    TeraByte,$/;"	e	enum:Unit
Test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    Test,$/;"	e	enum:Mode
Throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub enum Throughput {$/;"	g
Timer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^impl Drop for Timer {$/;"	c
Timer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^impl Timer {$/;"	c
Timer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^pub struct Timer {$/;"	s
Timeval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^struct Timeval {$/;"	s
Token	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^impl Display for Token {$/;"	c
Token	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^pub enum Token {$/;"	g
Trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^impl super::Trace for Trace {$/;"	c
Trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^pub struct Trace {}$/;"	s
Trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^impl super::Trace for Trace {$/;"	c
Trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^pub struct Trace {}$/;"	s
Trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^pub trait Trace {$/;"	i
Triple	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    Triple,$/;"	e	enum:SequenceType
Tuple	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^pub trait Tuple: Sized {$/;"	i
TupledDistributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^pub trait TupledDistributions: Sized {$/;"	i
TupledDistributionsBuilder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^pub trait TupledDistributionsBuilder: Sized {$/;"	i
Two	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    Two,$/;"	e	enum:Tails
Typical	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    Typical,$/;"	e	enum:Statistic
UNITS	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^static UNITS: &str = "KMGTPE";$/;"	v
UNITS_SI	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^static UNITS_SI: &str = "kMGTPE";$/;"	v
UnexpectedToken	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    UnexpectedToken(Token),$/;"	e	enum:Details
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Add<f64> for Unit {$/;"	c	module:impl_ops
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Add<u64> for Unit {$/;"	c	module:impl_ops
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Mul<f64> for Unit {$/;"	c	module:impl_ops
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Mul<u64> for Unit {$/;"	c	module:impl_ops
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^enum Unit {$/;"	g
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^impl Unit {$/;"	c
Unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^impl std::str::FromStr for Unit {$/;"	c
Unrecognised	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    Unrecognised,$/;"	e	enum:SequenceType
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Debug for UnresolvedFrames {$/;"	c
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Default for UnresolvedFrames {$/;"	c
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Eq for UnresolvedFrames {}$/;"	c
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl Hash for UnresolvedFrames {$/;"	c
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl PartialEq for UnresolvedFrames {$/;"	c
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^impl UnresolvedFrames {$/;"	c
UnresolvedFrames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^pub struct UnresolvedFrames {$/;"	s
UnresolvedReport	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^pub struct UnresolvedReport {$/;"	s
Utf8Decoder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^impl<B: BufRead> Iterator for Utf8Decoder<B> {$/;"	c
Utf8Decoder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^impl<B: BufRead> Utf8Decoder<B> {$/;"	c
Utf8Decoder	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^pub struct Utf8Decoder<B: BufRead> {$/;"	s
Value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^            type Value = ByteSize;$/;"	t	implementation:ByteSize::deserialize::ByteSizeVistor
Value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    type Value = Duration;$/;"	t	implementation:WallTime
Value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    type Value;$/;"	t	interface:Measurement
Value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Value,$/;"	e	enum:ValueType
ValueFormatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^pub trait ValueFormatter {$/;"	i
ValueType	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub enum ValueType {$/;"	g
Vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^impl<T> Append<T> for Vec<T> {$/;"	c
Vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B, C, D> TupledDistributionsBuilder for (Vec<A>, Vec<B>, Vec<C>, Vec<D>)$/;"	c
Vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B, C> TupledDistributionsBuilder for (Vec<A>, Vec<B>, Vec<C>)$/;"	c
Vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A, B> TupledDistributionsBuilder for (Vec<A>, Vec<B>)$/;"	c
Vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^impl<A> TupledDistributionsBuilder for (Vec<A>,)$/;"	c
Verbose	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    Verbose,$/;"	e	enum:CliVerbosity
WallTime	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^impl Measurement for WallTime {$/;"	c
WallTime	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^pub struct WallTime;$/;"	s
Warmup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    Warmup {$/;"	e	enum:OutgoingMessage
_	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^        let src = &value as *const _ as *const u8;$/;"	C	method:ByteSlice::write_u64
_	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/parse.rs	/^            *(&word as *const _ as *const F)$/;"	C	function:parse_float
_	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/parse.rs	/^            *(&word as *const _ as *const F).add(1)$/;"	C	function:parse_float
_Phantom	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    _Phantom(PhantomData<&'a ()>),$/;"	e	enum:Output
_Unwind_FindEnclosingFunction	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    fn _Unwind_FindEnclosingFunction(pc: *mut c_void) -> *mut c_void;$/;"	f
__NonExhaustive	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    __NonExhaustive,$/;"	e	enum:BatchSize
__Other	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    __Other,$/;"	e	enum:IncomingMessage
_marker	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    _marker: PhantomData<&'a [u8]>,$/;"	m	struct:AsciiStr
_phamtom2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    _phamtom2: PhantomData<M>,$/;"	m	struct:Function
_phantom	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    _phantom: PhantomData<T>,$/;"	m	struct:Function
abs_distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/distributions.rs	/^fn abs_distribution($/;"	f
abs_distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/distributions.rs	/^fn abs_distribution($/;"	f
abs_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/distributions.rs	/^pub(crate) fn abs_distributions($/;"	f
abs_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn abs_distributions(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:Gnuplot
abs_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn abs_distributions(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>);$/;"	P	interface:Plotter
abs_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/distributions.rs	/^pub(crate) fn abs_distributions($/;"	f
abs_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn abs_distributions(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:PlottersBackend
absolute	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub absolute: usize,$/;"	m	struct:Coords
absolute_estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub absolute_estimates: Estimates,$/;"	m	struct:MeasurementData
active_profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    active_profiler: Option<ProfilerGuard<'a>>,$/;"	m	struct:PProfProfiler
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn add(self, rhs: ByteSize) -> ByteSize {$/;"	P	implementation:ByteSize
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn add(self, rhs: T) -> ByteSize {$/;"	f
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn add(self, other: Unit) -> Self::Output {$/;"	P	implementation:impl_ops::f64
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn add(self, other: Unit) -> Self::Output {$/;"	P	implementation:impl_ops::u64
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn add(self, other: f64) -> Self::Output {$/;"	P	implementation:impl_ops::Unit
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn add(self, other: u64) -> Self::Output {$/;"	P	implementation:impl_ops::Unit
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn add(&self, v1: &Self::Value, v2: &Self::Value) -> Self::Value {$/;"	P	implementation:WallTime
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn add(&self, v1: &Self::Value, v2: &Self::Value) -> Self::Value;$/;"	P	interface:Measurement
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn add(&mut self, key: T, count: isize) -> Option<Entry<T>> {$/;"	P	implementation:Bucket
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn add(&mut self, key: T, count: isize) -> Option<Entry<T>> {$/;"	P	implementation:HashCounter
add	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn add(&mut self, key: T, count: isize) -> std::io::Result<()> {$/;"	P	implementation:Collector
add_assign	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn add_assign(&mut self, rhs: ByteSize) {$/;"	P	implementation:ByteSize
add_assign	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn add_assign(&mut self, rhs: T) {$/;"	f
add_map	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn add_map(hashmap: &mut BTreeMap<usize, isize>, entry: &Entry<usize>) {$/;"	f	module:test_utils
additional_plots	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    additional_plots: Vec<Plot>,$/;"	m	struct:Comparison
additional_plots	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    additional_plots: Vec<Plot>,$/;"	m	struct:Context
addr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn addr(&self) -> Option<*mut c_void>;$/;"	P	interface:Symbol
addr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn addr(&self) -> Option<*mut libc::c_void> {$/;"	P	implementation:Symbol
addr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub addr: Option<*mut c_void>,$/;"	m	struct:Symbol
addr_validate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod addr_validate;$/;"	n
advance	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn advance(&self, n: usize) -> &[u8] {$/;"	P	interface:ByteSlice
advance	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn advance(&mut self, skip_whitespace: bool) -> ParserResult<()> {$/;"	P	implementation:Lexer
advance_n	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn advance_n(&mut self, n: usize, skip_whitespace: bool) -> ParserResult<()> {$/;"	P	implementation:Lexer
all_directories	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    all_directories: HashSet<String>,$/;"	m	struct:Criterion
all_ids	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    all_ids: Vec<InternalBenchmarkId>,$/;"	m	struct:BenchmarkGroup
all_titles	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    all_titles: HashSet<String>,$/;"	m	struct:Criterion
analysis	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod analysis;$/;"	n
analysis	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn analysis(&self, _id: &BenchmarkId, _context: &ReportContext) {}$/;"	P	interface:Report
analysis	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn analysis(&self, id: &BenchmarkId, _: &ReportContext) {$/;"	P	implementation:CliReport
any_matched	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    any_matched: bool,$/;"	m	struct:BenchmarkGroup
append_	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn append_(mut self, item: T) -> Vec<T> {$/;"	P	implementation:Vec
append_	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn append_(self, item: T) -> Self;$/;"	P	interface:Append
as_directory_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn as_directory_name(&self) -> &str {$/;"	P	implementation:BenchmarkId
as_number	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn as_number(&self) -> Option<f64> {$/;"	P	implementation:BenchmarkId
as_title	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn as_title(&self) -> &str {$/;"	P	implementation:BenchmarkId
as_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn as_u64(&self) -> u64 {$/;"	P	implementation:ByteSize
assert_display	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn assert_display(expected: &str, b: ByteSize) {$/;"	f	module:tests
assert_iterated	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub(crate) fn assert_iterated(&mut self) {$/;"	P	implementation:Bencher
assert_to_string	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn assert_to_string(expected: &str, b: ByteSize, si: bool) {$/;"	f	module:tests
async_executor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub mod async_executor;$/;"	n
at	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^    pub fn at(&self, p: A) -> A {$/;"	f
at_unchecked	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^    unsafe fn at_unchecked(&self, p: A) -> A {$/;"	f
avg_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub avg_times: LabeledSample<'a, f64>,$/;"	m	struct:MeasurementData
b	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn b(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
b	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    b: &'b mut Bencher<'a, M>,$/;"	m	struct:AsyncBencher
backtrace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod backtrace;$/;"	n
backtrace_rs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^mod backtrace_rs;$/;"	n
bandwidth	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    bandwidth: A,$/;"	m	struct:Kde
bandwidth	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    pub fn bandwidth(&self) -> A {$/;"	f
base_avg_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub base_avg_times: Vec<f64>,$/;"	m	struct:ComparisonData
base_dir_exists	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^fn base_dir_exists(id: &BenchmarkId, baseline: &str, output_directory: &Path) -> bool {$/;"	f
base_estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub base_estimates: Estimates,$/;"	m	struct:ComparisonData
base_iter_counts	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub base_iter_counts: Vec<f64>,$/;"	m	struct:ComparisonData
base_sample_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub base_sample_times: Vec<f64>,$/;"	m	struct:ComparisonData
baseline	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    baseline: Baseline,$/;"	m	struct:Criterion
baseline_directory	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    baseline_directory: String,$/;"	m	struct:Criterion
bench	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn bench(&mut self, m: &M, iters: &[u64], parameter: &T) -> Vec<f64> {$/;"	f
bench	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn bench(&mut self, m: &M, iters: &[u64], parameter: &T) -> Vec<f64>;$/;"	P	interface:Routine
bench_function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn bench_function<ID: IntoBenchmarkId, F>(&mut self, id: ID, mut f: F) -> &mut Self$/;"	P	implementation:BenchmarkGroup
bench_function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn bench_function<F>(&mut self, id: &str, f: F) -> &mut Criterion<M>$/;"	f
bench_with_input	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn bench_with_input<ID: IntoBenchmarkId, F, I>($/;"	P	implementation:BenchmarkGroup
bench_with_input	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn bench_with_input<F, I>(&mut self, id: BenchmarkId, input: &I, f: F) -> &mut Criterion/;"	f
bencher	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod bencher;$/;"	n
bencher	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub(crate) bencher: BencherReport,$/;"	m	struct:Reports
bencher_enabled	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub(crate) bencher_enabled: bool,$/;"	m	struct:Reports
benchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod benchmark;$/;"	n
benchmark_group	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn benchmark_group<S: Into<String>>(&mut self, group_name: S) -> BenchmarkGroup<'_, M> {$/;"	P	implementation:Criterion
benchmark_group	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod benchmark_group;$/;"	n
benchmark_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn benchmark_start(&self, _id: &BenchmarkId, _context: &ReportContext) {}$/;"	P	interface:Report
benchmark_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn benchmark_start(&self, id: &BenchmarkId, _: &ReportContext) {$/;"	P	implementation:CliReport
benchmarks	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    benchmarks: Vec<IndividualBenchmark>,$/;"	m	struct:SummaryContext
benchmarks	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    benchmarks: Vec<ReportLink<'a>>,$/;"	m	struct:BenchmarkValueGroup
binary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod binary;$/;"	n
bivariate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^pub mod bivariate;$/;"	n
black_box	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub fn black_box<T>(dummy: T) -> T {$/;"	f
block_on	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^    fn block_on<T>(&self, future: impl Future<Output = T>) -> T {$/;"	P	implementation:AsyncStdExecutor
block_on	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^    fn block_on<T>(&self, future: impl Future<Output = T>) -> T {$/;"	P	implementation:FuturesExecutor
block_on	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^    fn block_on<T>(&self, future: impl Future<Output = T>) -> T {$/;"	P	implementation:Runtime
block_on	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^    fn block_on<T>(&self, future: impl Future<Output = T>) -> T {$/;"	P	implementation:SmolExecutor
block_on	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/async_executor.rs	/^    fn block_on<T>(&self, future: impl Future<Output = T>) -> T;$/;"	P	interface:AsyncExecutor
blocklist	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn blocklist<T: AsRef<str>>(self, blocklist: &[T]) -> Self {$/;"	P	implementation:ProfilerGuardBuilder
blocklist_segments	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    blocklist_segments: Vec<(usize, usize)>,$/;"	m	struct:Profiler
blocklist_segments	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    blocklist_segments: Vec<(usize, usize)>,$/;"	m	struct:ProfilerGuardBuilder
bold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn bold(&self, s: String) -> String {$/;"	P	implementation:CliReport
bootstrap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    pub fn bootstrap<T, S>(&self, nresamples: usize, statistic: S) -> T::Distributions$/;"	f
bootstrap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^mod bootstrap;$/;"	n
bootstrap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mixed.rs	/^pub fn bootstrap<A, T, S>($/;"	f
bootstrap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^mod bootstrap;$/;"	n
bootstrap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^pub fn bootstrap<A, B, T, S>($/;"	f
bootstrap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn bootstrap<T, S>(&self, nresamples: usize, statistic: S) -> T::Distributions$/;"	f
buckets	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    buckets: Box<[Bucket<T>; BUCKETS]>,$/;"	m	struct:HashCounter
buffer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    buffer : Vec<u8>,$/;"	m	struct:Utf8Decoder
buffer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    buffer: Box<[T; BUFFER_LENGTH]>,$/;"	m	struct:TempFdArray
buffer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub buffer: &'a [T],$/;"	m	struct:TempFdArrayIterator
buffer	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    buffer: Vec<char>,$/;"	m	struct:Lexer
buffer_index	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    buffer_index: usize,$/;"	m	struct:TempFdArray
buffer_to_bytes_unchecked	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn buffer_to_bytes_unchecked(&self) -> Vec<u8> {$/;"	P	implementation:Lexer
buffer_to_string	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn buffer_to_string(&self) -> String {$/;"	P	implementation:Lexer
build	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn build(self) -> Result<ProfilerGuard<'static>> {$/;"	P	implementation:ProfilerGuardBuilder
build	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub fn build(&self) -> Result<Report> {$/;"	P	implementation:ReportBuilder
build_change_estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub fn build_change_estimates($/;"	f
build_estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^pub fn build_estimates($/;"	f
build_unresolved	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub fn build_unresolved(&self) -> Result<UnresolvedReport> {$/;"	P	implementation:ReportBuilder
bytes_per_second	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn bytes_per_second(&self, bytes: f64, typical: f64, values: &mut [f64]) -> &'static str {$/;"	P	implementation:DurationFormatter
bytes_per_second_decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn bytes_per_second_decimal($/;"	P	implementation:DurationFormatter
can_create_from_array	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn can_create_from_array() {$/;"	f	module:tests
can_create_from_file	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn can_create_from_file() {$/;"	f	module:tests
cargo_target_directory	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^fn cargo_target_directory() -> Option<PathBuf> {$/;"	f
cause	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    fn cause(&self) -> Option<&dyn StdError> {$/;"	P	implementation:Error
change	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^pub fn change(pct: f64, signed: bool) -> String {$/;"	f
change	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    change: ConfidenceInterval,$/;"	m	struct:Comparison
check	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^        fn check(a: u64, b: u64, lo: u64, hi: u64) {$/;"	f	function:tests::test_full_multiplication
check_first	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn check_first(&self, c: u8) -> bool {$/;"	P	interface:ByteSlice
check_first	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn check_first(&self, c: u8) -> bool {$/;"	P	implementation:AsciiStr
check_first2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn check_first2(&self, c1: u8, c2: u8) -> bool {$/;"	P	interface:ByteSlice
check_first_digit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn check_first_digit(&self) -> bool {$/;"	P	implementation:AsciiStr
check_first_either	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn check_first_either(&self, c1: u8, c2: u8) -> bool {$/;"	P	implementation:AsciiStr
check_following_exponent	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn check_following_exponent(&mut self) -> ParserResult<()> {$/;"	P	implementation:Lexer
check_following_minus	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn check_following_minus(&mut self) -> ParserResult<bool> {$/;"	P	implementation:Lexer
check_following_zero	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn check_following_zero(&mut self) -> ParserResult<bool> {$/;"	P	implementation:Lexer
check_len	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn check_len(&self, n: usize) -> bool {$/;"	P	implementation:AsciiStr
check_unicode_sequence	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn check_unicode_sequence(&mut self) -> ParserResult<()> {$/;"	P	implementation:Lexer
choose_sampling_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub(crate) fn choose_sampling_mode($/;"	P	implementation:SamplingMode
classify	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^pub fn classify<A>(sample: &Sample<A>) -> LabeledSample<'_, A>$/;"	f
clear	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    pub fn clear(&mut self) {$/;"	P	implementation:PathElementStack
cli	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub(crate) cli: CliReport,$/;"	m	struct:Reports
cli_enabled	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub(crate) cli_enabled: bool,$/;"	m	struct:Reports
clone	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    fn clone(&self) -> Data<'a, X, Y> {$/;"	P	implementation:Data
cmp	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^        fn cmp<T>(a: &T, b: &T) -> Ordering$/;"	f	function:percentiles
cmp	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    fn cmp(&self, other: &Self) -> Ordering {$/;"	P	implementation:Coords
code	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^    pub code: DecoderErrorCode,$/;"	m	struct:DecoderError
collector	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod collector;$/;"	n
collector_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn collector_test() {$/;"	f	module:tests
column	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub column: usize,$/;"	m	struct:Coords
common	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/lib.rs	/^pub mod common;$/;"	n
common	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/compare.rs	/^pub(crate) fn common<M: Measurement>($/;"	f
common	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^pub(crate) fn common<M: Measurement, T: ?Sized>($/;"	f
common	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod common;$/;"	n
commutative_op	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^macro_rules! commutative_op {$/;"	M
compare	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^mod compare;$/;"	n
compare_to_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^fn compare_to_threshold(estimate: &Estimate, noise: f64) -> ComparisonResult {$/;"	f
compare_to_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^fn compare_to_threshold(estimate: &Estimate, noise: f64) -> ComparisonResult {$/;"	f
comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    comparison: Option<Comparison>,$/;"	m	struct:Context
comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn comparison(&self, measurements: &MeasurementData<'_>) -> Option<Comparison> {$/;"	P	implementation:Html
comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub fn comparison(mut self, comp: &'a ComparisonData) -> PlotData<'a> {$/;"	P	implementation:PlotData
comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) comparison: Option<&'a ComparisonData>,$/;"	m	struct:PlotData
comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub comparison: Option<ComparisonData>,$/;"	m	struct:MeasurementData
complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn complete($/;"	f
complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn complete(self) -> (Distribution<A>, Distribution<B>) {$/;"	f
complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn complete(self) -> (Distribution<A>, Distribution<B>, Distribution<C>) {$/;"	f
complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn complete(self) -> (Distribution<A>,) {$/;"	f
complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn complete(self) -> <Self::Item as Tuple>::Distributions;$/;"	P	interface:TupledDistributionsBuilder
complex_file	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn complex_file() -> File { File::open("fixtures\/twitter.json").unwrap() }$/;"	f	module:tests
compute_float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^pub fn compute_float<F: Float>(q: i64, mut w: u64) -> AdjustedMantissa {$/;"	f
compute_pow5_128	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^    fn compute_pow5_128(q: i32) -> (u64, u64) {$/;"	f	module:tests
compute_product_approx	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^fn compute_product_approx(q: i64, w: u64, precision: usize) -> (u64, u64) {$/;"	f
confidence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    confidence: String,$/;"	m	struct:Context
confidence_interval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub confidence_interval: ConfidenceInterval,$/;"	m	struct:Estimate
confidence_interval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    pub fn confidence_interval(&self, confidence_level: A) -> (A, A)$/;"	f
confidence_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub confidence_level: f64,$/;"	m	struct:BenchmarkConfig
confidence_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) confidence_level: Option<f64>,$/;"	m	struct:PartialBenchmarkConfig
confidence_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn confidence_level(&mut self, cl: f64) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
confidence_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    confidence_level: f64,$/;"	m	struct:BenchmarkConfig
confidence_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub confidence_level: f64,$/;"	m	struct:ConfidenceInterval
confidence_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn confidence_level(mut self, cl: f64) -> Criterion<M> {$/;"	P	implementation:Criterion
config	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    config: BenchmarkConfig,$/;"	m	struct:Criterion
configure_from_args	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn configure_from_args(mut self) -> Criterion<M> {$/;"	P	implementation:Criterion
connection	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    connection: Option<MutexGuard<'static, Connection>>,$/;"	m	struct:Criterion
connection	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod connection;$/;"	n
consume	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    pub fn consume(&mut self) -> ParserResult<PackedToken> {$/;"	P	implementation:Lexer
context	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) context: &'a ReportContext,$/;"	m	struct:PlotContext
convert_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^fn convert_size(size: Option<(usize, usize)>) -> Option<(u32, u32)> {$/;"	f
coords	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    pub coords: Coords,$/;"	m	struct:Error
coords	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    coords: Coords,$/;"	m	struct:Lexer
coords	/home/jcoombes/Src/chisel-json/src/lib.rs	/^pub mod coords;$/;"	n
copy_new_dir_to_base	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^fn copy_new_dir_to_base(id: &str, baseline: &str, output_directory: &Path) {$/;"	f
count	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn count(&self) -> (usize, usize, usize, usize, usize) {$/;"	f
count	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub count: isize,$/;"	m	struct:Entry
cp	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn cp(from: &Path, to: &Path) -> Result<()> {$/;"	f
create_pipe	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^fn create_pipe() -> nix::Result<(i32, i32)> {$/;"	f
create_plotter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn create_plotter(&self) -> Option<Box<dyn Plotter>> {$/;"	P	implementation:PlottingBackend
criterion	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    criterion: &'a mut Criterion<M>,$/;"	m	struct:BenchmarkGroup
criterion	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^pub mod criterion;$/;"	n
criterion_group	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/macros.rs	/^macro_rules! criterion_group {$/;"	M
criterion_main	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/macros.rs	/^macro_rules! criterion_main {$/;"	M
csv_enabled	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub(crate) csv_enabled: bool,$/;"	m	struct:Reports
csv_report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod csv_report;$/;"	n
data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub data: Data<'a, f64, f64>,$/;"	m	struct:MeasurementData
data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    data: Data<'a, X, Y>,$/;"	m	struct:Pairs
data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^    data: (&'a [X], &'a [Y]),$/;"	m	struct:Resamples
data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub(crate) data: Collector<UnresolvedFrames>,$/;"	m	struct:Profiler
data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub data: HashMap<Frames, isize>,$/;"	m	struct:Report
data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub data: HashMap<UnresolvedFrames, isize>,$/;"	m	struct:UnresolvedReport
debug_context	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^fn debug_context<S: Serialize>(path: &Path, context: &S) {$/;"	f
debug_enabled	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^fn debug_enabled() -> bool {$/;"	f
debug_script	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^fn debug_script(path: &Path, figure: &Figure) {$/;"	f
decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod decimal;$/;"	n
decimal_point	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub decimal_point: i32,$/;"	m	struct:Decimal
decode_a_complex_document	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn decode_a_complex_document() {$/;"	f	module:tests
decode_next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    pub fn decode_next(&mut self) -> DecoderResult<char> {$/;"	P	implementation:Utf8Decoder
decode_pair	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! decode_pair {$/;"	M
decode_quad	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! decode_quad {$/;"	M
decode_triple	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! decode_triple {$/;"	M
decoder	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    decoder: Utf8Decoder<B>,$/;"	m	struct:Lexer
decoder_error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^macro_rules! decoder_error {$/;"	M
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn default() -> Criterion {$/;"	P	implementation:Criterion
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn default() -> PlotConfiguration {$/;"	P	implementation:PlotConfiguration
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    fn default() -> Self {$/;"	P	implementation:Decimal
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn default() -> Bucket<T> {$/;"	P	implementation:Bucket
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn default() -> Self {$/;"	P	implementation:Entry
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn default() -> Self {$/;"	P	implementation:HashCounter
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn default() -> Self {$/;"	P	implementation:UnresolvedFrames
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn default() -> ProfilerGuardBuilder {$/;"	P	implementation:ProfilerGuardBuilder
default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    fn default() -> Self {$/;"	P	implementation:ReportTiming
default	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    fn default() -> Self {$/;"	P	implementation:Coords
demangle_cpp	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn demangle_cpp() {$/;"	f	module:tests
demangle_rust	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn demangle_rust() {$/;"	f	module:tests
deref	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    fn deref(&self) -> &Sample<A> {$/;"	P	implementation:Distribution
deref	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fn deref(&self) -> &Sample<A> {$/;"	f
deref	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    fn deref(&self) -> &[A] {$/;"	P	implementation:Sample
description	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    fn description(&self) -> &str {$/;"	P	implementation:Error
description	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^    fn description(&self) -> &str {$/;"	P	implementation:Error
deserialize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	P	implementation:ByteSize
details	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    pub details: Details,$/;"	m	struct:Error
different_subsets	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^    fn different_subsets() {$/;"	f	module:test
digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub digits: [u8; Self::MAX_DIGITS],$/;"	m	struct:Decimal
directory_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    directory_name: String,$/;"	m	struct:BenchmarkId
distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^mod distributions;$/;"	n
distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^mod distributions;$/;"	n
distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub distributions: Distributions,$/;"	m	struct:MeasurementData
dom	/home/jcoombes/Src/chisel-json/src/parser/mod.rs	/^pub mod dom;$/;"	n
dot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^fn dot<A>(xs: &[A], ys: &[A]) -> A$/;"	f
double_byte_sequence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! double_byte_sequence {$/;"	M
draw_line_comarision_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^fn draw_line_comarision_figure<XR: AsRangedCoord<Value = f64>, YR: AsRangedCoord<Value = f64>>($/;"	f
draw_violin_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^fn draw_violin_figure<XR: AsRangedCoord<Value = f64>, YR: AsRangedCoord<Value = f64>>($/;"	f
drop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    fn drop(&mut self) {$/;"	P	implementation:BenchmarkGroup
drop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn drop(&mut self) {$/;"	P	implementation:ErrnoProtector
drop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn drop(&mut self) {$/;"	P	implementation:ProfilerGuard
drop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    fn drop(&mut self) {$/;"	P	implementation:Timer
duration	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub duration: Duration,$/;"	m	struct:ReportTiming
elapsed	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^macro_rules! elapsed {$/;"	M
elapsed_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub(crate) elapsed_time: Duration, \/\/ How much time did it take to perform the iteration? /;"	m	struct:Bencher
elements_per_second	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn elements_per_second(&self, elems: f64, typical: f64, values: &mut [f64]) -> &'static str /;"	P	implementation:DurationFormatter
emit_event	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^macro_rules! emit_event {$/;"	M
enable_text_coloring	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub enable_text_coloring: bool,$/;"	m	struct:CliReport
enable_text_overwrite	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub enable_text_overwrite: bool,$/;"	m	struct:CliReport
end	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn end(&self, i: Self::Intermediate) -> Self::Value {$/;"	P	implementation:WallTime
end	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn end(&self, i: Self::Intermediate) -> Self::Value;$/;"	P	interface:Measurement
end	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    end: *const u8,$/;"	m	struct:AsciiStr
end	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub end: Coords,$/;"	m	struct:Span
end_of_input	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^macro_rules! end_of_input {$/;"	M
ensure_directory_name_unique	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn ensure_directory_name_unique(&mut self, existing_directories: &HashSet<String>) {$/;"	P	implementation:BenchmarkId
ensure_title_unique	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn ensure_title_unique(&mut self, existing_titles: &HashSet<String>) {$/;"	P	implementation:BenchmarkId
entries	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    entries: Box<[Entry<T>; BUCKETS_ASSOCIATIVITY]>,$/;"	m	struct:Bucket
eq	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Decimal
eq	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Symbol
eq	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UnresolvedFrames
eq_ignore_case	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn eq_ignore_case(&self, u: &[u8]) -> bool {$/;"	P	interface:ByteSlice
error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod error;$/;"	n
error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/macros_private.rs	/^macro_rules! error {$/;"	M
error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod error;$/;"	n
errors	/home/jcoombes/Src/chisel-json/src/lib.rs	/^pub mod errors;$/;"	n
estimate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod estimate;$/;"	n
estimate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    fn estimate<A: Float>(self, sample: &Sample<A>) -> A {$/;"	P	implementation:Bandwidth
estimate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    pub fn estimate(&self, x: A) -> A {$/;"	f
estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/compare.rs	/^fn estimates<M: Measurement>($/;"	f
estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^fn estimates(avg_times: &Sample<f64>, config: &BenchmarkConfig) -> (Distributions, Estimates) {$/;"	f
evaluate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^    fn evaluate(&self, x: A) -> A {$/;"	f
evaluate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^    fn evaluate(&self, x: A) -> A;$/;"	P	interface:Kernel
events	/home/jcoombes/Src/chisel-json/src/lib.rs	/^mod events;$/;"	n
evict_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn evict_test() {$/;"	f	module:tests
expecting	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^            fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {$/;"	P	implementation:ByteSize::deserialize::ByteSizeVistor
explanation	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    explanation: String,$/;"	m	struct:Comparison
exponent	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    pub exponent: i64,$/;"	m	struct:Number
extend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn extend(&mut self, other: &mut (Vec<A>, Vec<B>)) {$/;"	f
extend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn extend(&mut self, other: &mut (Vec<A>, Vec<B>, Vec<C>)) {$/;"	f
extend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn extend(&mut self, other: &mut (Vec<A>, Vec<B>, Vec<C>, Vec<D>)) {$/;"	f
extend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn extend(&mut self, other: &mut (Vec<A>,)) {$/;"	f
extend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn extend(&mut self, other: &mut Self);$/;"	P	interface:TupledDistributionsBuilder
f	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    f: F,$/;"	m	struct:Function
f32	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/float.rs	/^impl Float for f32 {}$/;"	c
f32	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^impl Float for f32 {$/;"	c
f32	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^impl private::Sealed for f32 {}$/;"	c
f32	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^impl FastFloat for f32 {}$/;"	c
f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Add<Unit> for f64 {$/;"	c	module:impl_ops
f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Mul<Unit> for f64 {$/;"	c	module:impl_ops
f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/float.rs	/^impl Float for f64 {}$/;"	c
f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^impl Float for f64 {$/;"	c
f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^impl private::Sealed for f64 {}$/;"	c
f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^impl FastFloat for f64 {}$/;"	c
factor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    fn factor(&self) -> u64 {$/;"	P	implementation:Unit
failed_validate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    fn failed_validate() {$/;"	f	module:test
faint	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn faint(&self, s: String) -> String {$/;"	P	implementation:CliReport
fences	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fences: (A, A, A, A),$/;"	m	struct:Iter
fences	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fences: (A, A, A, A),$/;"	m	struct:LabeledSample
fences	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn fences(&self) -> (A, A, A, A) {$/;"	f
file	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    file: NamedTempFile,$/;"	m	struct:TempFdArray
file_vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub file_vec: Vec<u8>,$/;"	m	struct:TempFdArrayIterator
filename	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn filename(&self) -> Option<PathBuf>;$/;"	P	interface:Symbol
filename	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn filename(&self) -> Option<std::path::PathBuf> {$/;"	P	implementation:Symbol
filename	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub filename: Option<PathBuf>,$/;"	m	struct:Symbol
filename	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn filename(&self) -> Cow<str> {$/;"	P	implementation:Symbol
filter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    filter: Option<Regex>,$/;"	m	struct:Criterion
filter_matches	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn filter_matches(&self, id: &str) -> bool {$/;"	P	implementation:Criterion
final_summary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn final_summary(&self, report_context: &ReportContext) {$/;"	P	implementation:Html
final_summary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn final_summary(&self) {$/;"	P	implementation:Criterion
final_summary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn final_summary(&self, _context: &ReportContext) {}$/;"	P	interface:Report
finish	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn finish(self) {$/;"	P	implementation:BenchmarkGroup
first	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn first(&self) -> u8 {$/;"	P	implementation:AsciiStr
first_either	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn first_either(&self, c1: u8, c2: u8) -> bool {$/;"	P	implementation:AsciiStr
first_is	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn first_is(&self, c: u8) -> bool {$/;"	P	implementation:AsciiStr
fit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/regression.rs	/^    pub fn fit(data: &Data<'_, A, A>) -> Slope<A> {$/;"	f
flamegraph	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^        pub fn flamegraph<W>(&self, writer: W) -> Result<()>$/;"	P	implementation:flamegraph::Report
flamegraph	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^mod flamegraph {$/;"	n
flamegraph_with_options	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^        pub fn flamegraph_with_options<W>($/;"	P	implementation:flamegraph::Report
float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^mod float;$/;"	n
float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod float;$/;"	n
flush_buffer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn flush_buffer(&mut self) -> std::io::Result<()> {$/;"	P	implementation:TempFdArray
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn fmt(&self, f: &mut Formatter) -> fmt::Result {$/;"	P	implementation:ByteSize
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn fmt(&self, f: &mut Formatter) ->fmt::Result {$/;"	P	implementation:ByteSize
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:DecoderError
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:MessageError
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {$/;"	P	implementation:Error
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {$/;"	P	implementation:Statistic
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {$/;"	P	implementation:BenchmarkId
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Decimal
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Error
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn fmt(&self, f: &mut Formatter) -> fmt::Result {$/;"	P	implementation:Symbol
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {$/;"	P	implementation:Frames
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {$/;"	P	implementation:UnresolvedFrames
fmt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {$/;"	P	implementation:Report
fmt	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:Coords
fmt	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:Span
fmt	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:Details
fmt	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:Error
fmt	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:Stage
fmt	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {$/;"	P	implementation:Token
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn as_u64(&self) -> u64 {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn b(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn gb(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn gib(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn kb(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn kib(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn mb(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn mib(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn pb(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn pib(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn tb(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn tib(size: u64) -> ByteSize {$/;"	C	implementation:ByteSize
fn	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub const fn zero_pow2(power2: i32) -> Self {$/;"	C	implementation:AdjustedMantissa
format	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod format;$/;"	n
format_opt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^        fn format_opt(opt: &Option<String>) -> String {$/;"	f	method:BenchmarkId::fmt
format_throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn format_throughput(&self, throughput: &Throughput, value: f64) -> String {$/;"	P	interface:ValueFormatter
format_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn format_value(&self, value: f64) -> String {$/;"	P	interface:ValueFormatter
formatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn formatter(&self) -> &dyn ValueFormatter {$/;"	P	implementation:WallTime
formatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn formatter(&self) -> &dyn ValueFormatter;$/;"	P	interface:Measurement
formatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) formatter: &'a dyn ValueFormatter,$/;"	m	struct:PlotData
frame_pointer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    frame_pointer: *mut FramePointerLayout,$/;"	m	struct:FramePointerLayout
frame_pointer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^pub mod frame_pointer;$/;"	n
frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub frames: SmallVec<[<TraceImpl as Trace>::Frame; MAX_DEPTH]>,$/;"	m	struct:UnresolvedFrames
frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub frames: Vec<Vec<Symbol>>,$/;"	m	struct:Frames
frames	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod frames;$/;"	n
frames_post_processor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    frames_post_processor: Option<FramesPostProcessor>,$/;"	m	struct:ReportBuilder
frames_post_processor	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub fn frames_post_processor<T>(&mut self, frames_post_processor: T) -> &mut Self$/;"	P	implementation:ReportBuilder
frequency	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    frequency: c_int,$/;"	m	struct:PProfProfiler
frequency	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    frequency: c_int,$/;"	m	struct:ProfilerGuardBuilder
frequency	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn frequency(self, frequency: c_int) -> Self {$/;"	P	implementation:ProfilerGuardBuilder
frequency	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub frequency: c_int,$/;"	m	struct:Timer
frequency	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub frequency: i32,$/;"	m	struct:ReportTiming
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: &InternalBenchmarkId) -> RawBenchmarkId {$/;"	P	implementation:RawBenchmarkId
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: &crate::PlotConfiguration) -> Self {$/;"	P	implementation:PlotConfiguration
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: &crate::benchmark::BenchmarkConfig) -> Self {$/;"	P	implementation:BenchmarkConfig
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: ciborium::de::Error<std::io::Error>) -> Self {$/;"	P	implementation:MessageError
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: ciborium::ser::Error<std::io::Error>) -> Self {$/;"	P	implementation:MessageError
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: crate::ActualSamplingMode) -> Self {$/;"	P	implementation:SamplingMethod
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: crate::AxisScale) -> Self {$/;"	P	implementation:AxisScale
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: std::io::Error) -> Self {$/;"	P	implementation:MessageError
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn from(other: std::time::Duration) -> Self {$/;"	P	implementation:Duration
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^    fn from(other: CsvError) -> Error {$/;"	P	implementation:Error
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    pub fn from(values: Box<[A]>) -> Distribution<A> {$/;"	f
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn from(frames: UnresolvedFrames) -> Self {$/;"	P	implementation:Frames
from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn from(symbol: &T) -> Self {$/;"	f
from_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn from_id($/;"	P	implementation:IndividualBenchmark
from_parameter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn from_parameter<P: ::std::fmt::Display>(parameter: P) -> BenchmarkId {$/;"	P	implementation:BenchmarkId
from_str	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    fn from_str(unit: &str) -> Result<Self, Self::Err> {$/;"	P	implementation:Unit
from_str	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    fn from_str(value: &str) -> Result<Self, Self::Err> {$/;"	P	implementation:ByteSize
from_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    fn from_u64(v: u64) -> Self {$/;"	P	implementation:f32
from_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    fn from_u64(v: u64) -> Self {$/;"	P	implementation:f64
from_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    fn from_u64(v: u64) -> Self;$/;"	P	interface:Float
fs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod fs;$/;"	n
full_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    full_id: String,$/;"	m	struct:BenchmarkId
full_multiplication	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^fn full_multiplication(a: u64, b: u64) -> (u64, u64) {$/;"	f
function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    function: Option<&'a str>,$/;"	m	struct:CsvRow
function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn function(output_directory: &Path, group_id: &str, function_id: &'a str) -> ReportLink<'a>/;"	P	implementation:ReportLink
function_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    function_id: Option<String>,$/;"	m	struct:RawBenchmarkId
function_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub function_id: Option<String>,$/;"	m	struct:BenchmarkId
function_ids	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    function_ids: Option<Vec<ReportLink<'a>>>,$/;"	m	struct:BenchmarkGroup
function_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub(crate) function_name: Option<String>,$/;"	m	struct:BenchmarkId
fuzz_file	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn fuzz_file() -> File {$/;"	f	module:tests
gb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn gb(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
gb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn gb<V: Into<u64>>(size: V) -> u64 {$/;"	f
generate_plots	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn generate_plots($/;"	P	implementation:Html
generate_summary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn generate_summary($/;"	P	implementation:Html
get	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub fn get(&self, stat: Statistic) -> &Distribution<f64> {$/;"	P	implementation:ChangeDistributions
get	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub fn get(&self, stat: Statistic) -> &Estimate {$/;"	P	implementation:ChangeEstimates
get	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub fn get(&self, stat: Statistic) -> Option<&Distribution<f64>> {$/;"	P	implementation:Distributions
get	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub fn get(&self, stat: Statistic) -> Option<&Estimate> {$/;"	P	implementation:Estimates
get_at	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn get_at(&self, i: usize) -> u8 {$/;"	P	interface:ByteSlice
get_first	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn get_first(&self) -> u8 {$/;"	P	interface:ByteSlice
gib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn gib(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
gib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn gib<V: Into<u64>>(size: V) -> u64 {$/;"	f
gnuplot_backend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^mod gnuplot_backend;$/;"	n
gnuplot_escape	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^fn gnuplot_escape(string: &str) -> String {$/;"	f
green	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn green(&self, s: &str) -> String {$/;"	P	implementation:CliReport
group	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    group: &'a str,$/;"	m	struct:CsvRow
group	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn group(output_directory: &Path, group_id: &'a str) -> ReportLink<'a> {$/;"	P	implementation:ReportLink
group_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    group_id: String,$/;"	m	struct:RawBenchmarkId
group_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    group_id: String,$/;"	m	struct:SummaryContext
group_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub group_id: String,$/;"	m	struct:BenchmarkId
group_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    group_name: String,$/;"	m	struct:BenchmarkGroup
group_report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    group_report: ReportLink<'a>,$/;"	m	struct:BenchmarkGroup
group_separator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn group_separator(&self) {$/;"	P	implementation:BencherReport
group_separator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn group_separator(&self) {$/;"	P	implementation:CliReport
group_separator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn group_separator(&self) {}$/;"	P	interface:Report
groups	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    groups: Vec<BenchmarkGroup<'a>>,$/;"	m	struct:IndexContext
hash	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn hash(key: &T) -> u64 {$/;"	P	implementation:HashCounter
hash	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn hash<H: Hasher>(&self, state: &mut H) {$/;"	P	implementation:Symbol
hash	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    fn hash<H: Hasher>(&self, state: &mut H) {$/;"	P	implementation:UnresolvedFrames
html	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod html;$/;"	n
html	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub(crate) html: Option<Html>,$/;"	m	struct:Reports
id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) id: &'a BenchmarkId,$/;"	m	struct:PlotContext
id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn id(&self) -> &str {$/;"	P	implementation:BenchmarkId
if_exists	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^fn if_exists(output_directory: &Path, path: &Path) -> Option<String> {$/;"	f
impl_ops	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^mod impl_ops {$/;"	n
inc	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub fn inc(&mut self, newline: bool) {$/;"	P	implementation:Coords
index	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    index : usize$/;"	m	struct:Utf8Decoder
index	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fn index(&self, i: usize) -> &Label {$/;"	f
index	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    index: usize,$/;"	m	struct:BucketIterator
index	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub index: usize,$/;"	m	struct:TempFdArrayIterator
individual	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn individual(output_directory: &Path, id: &'a BenchmarkId) -> ReportLink<'a> {$/;"	P	implementation:ReportLink
individual_links	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    individual_links: Vec<BenchmarkValueGroup<'a>>,$/;"	m	struct:BenchmarkGroup
inequality	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    inequality: String,$/;"	m	struct:Comparison
info	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/macros_private.rs	/^macro_rules! info {$/;"	M
init	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn init(&mut self) -> DecoderResult<()> {$/;"	P	implementation:Utf8Decoder
init	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    init : bool,$/;"	m	struct:Utf8Decoder
init	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn init(&mut self) -> Result<()> {$/;"	P	implementation:Profiler
inner	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    inner: RefCell<InnerConnection>,$/;"	m	struct:Connection
input	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    input: B,$/;"	m	struct:Utf8Decoder
integer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^pub fn integer(n: f64) -> String {$/;"	f
into_benchmark_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    fn into_benchmark_id(self) -> BenchmarkId {$/;"	P	implementation:BenchmarkId
into_benchmark_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    fn into_benchmark_id(self) -> BenchmarkId {$/;"	P	implementation:S
into_benchmark_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    fn into_benchmark_id(self) -> BenchmarkId;$/;"	P	interface:IntoBenchmarkId
into_iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fn into_iter(self) -> Iter<'a, A> {$/;"	f
invalid_byte_sequence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^macro_rules! invalid_byte_sequence {$/;"	M
ip	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^    fn ip(&self) -> usize {$/;"	P	implementation:Frame
ip	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    fn ip(&self) -> usize {$/;"	P	implementation:Frame
ip	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    pub ip: usize,$/;"	m	struct:Frame
ip	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn ip(&self) -> usize;$/;"	P	interface:Frame
iqr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^    pub fn iqr(&self) -> A {$/;"	f
iqr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn iqr(&self) -> A$/;"	f
is_8digits_le	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^pub fn is_8digits_le(v: u64) -> bool {$/;"	f
is_benchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^    fn is_benchmark(entry: &DirEntry) -> bool {$/;"	f	function:list_existing_benchmarks
is_benchmark	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn is_benchmark(&self) -> bool {$/;"	P	implementation:Mode
is_blocklisted	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn is_blocklisted(&self, addr: usize) -> bool {$/;"	P	implementation:Profiler
is_dir	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn is_dir<P>(path: &P) -> bool$/;"	f
is_empty	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:AsciiStr
is_empty	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:PathElementStack
is_fast_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    fn is_fast_path<F: Float>(&self) -> bool {$/;"	P	implementation:Number
is_high	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn is_high(&self) -> bool {$/;"	P	implementation:Label
is_linear	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn is_linear(&self) -> bool {$/;"	P	implementation:ActualSamplingMode
is_low	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn is_low(&self) -> bool {$/;"	P	implementation:Label
is_mild	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn is_mild(&self) -> bool {$/;"	P	implementation:Label
is_outlier	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn is_outlier(&self) -> bool {$/;"	P	implementation:Label
is_severe	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn is_severe(&self) -> bool {$/;"	P	implementation:Label
is_thumbnail	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) is_thumbnail: bool,$/;"	m	struct:PlotContext
it_interval	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub it_interval: Timeval,$/;"	m	struct:Itimerval
it_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub it_value: Timeval,$/;"	m	struct:Itimerval
item	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub item: T,$/;"	m	struct:Entry
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter<O, R, F>(&mut self, mut routine: R)$/;"	P	implementation:AsyncBencher
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter<O, R>(&mut self, mut routine: R)$/;"	P	implementation:Bencher
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    pub fn iter(&self) -> Pairs<'a, X, Y> {$/;"	P	implementation:Data
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    iter: slice::Iter<'a, A>,$/;"	m	struct:Iter
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    pub fn iter(&self) -> Iter<'a, A> {$/;"	f
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn iter(&self) -> BucketIterator<T> {$/;"	P	implementation:Bucket
iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn iter(&self) -> impl Iterator<Item = &Entry<T>> {$/;"	P	implementation:HashCounter
iter_batched	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_batched<I, O, S, R, F>(&mut self, mut setup: S, mut routine: R, size: BatchSize)$/;"	P	implementation:AsyncBencher
iter_batched	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_batched<I, O, S, R>(&mut self, mut setup: S, mut routine: R, size: BatchSize)$/;"	P	implementation:Bencher
iter_batched_ref	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_batched_ref<I, O, S, R, F>(&mut self, mut setup: S, mut routine: R, size: BatchS/;"	P	implementation:AsyncBencher
iter_batched_ref	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_batched_ref<I, O, S, R>(&mut self, mut setup: S, mut routine: R, size: BatchSize/;"	P	implementation:Bencher
iter_count	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^pub fn iter_count(iterations: u64) -> String {$/;"	f
iter_counts	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn iter_counts(&self) -> &Sample<f64> {$/;"	P	implementation:MeasurementData
iter_custom	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_custom<R, F>(&mut self, mut routine: R)$/;"	P	implementation:AsyncBencher
iter_custom	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_custom<R>(&mut self, mut routine: R)$/;"	P	implementation:Bencher
iter_with_large_drop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_with_large_drop<O, R, F>(&mut self, mut routine: R)$/;"	P	implementation:AsyncBencher
iter_with_large_drop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_with_large_drop<O, R>(&mut self, mut routine: R)$/;"	P	implementation:Bencher
iter_with_large_setup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_with_large_setup<I, O, S, R, F>(&mut self, setup: S, routine: R)$/;"	P	implementation:AsyncBencher
iter_with_setup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_with_setup<I, O, S, R, F>(&mut self, setup: S, routine: R)$/;"	P	implementation:AsyncBencher
iter_with_setup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn iter_with_setup<I, O, S, R>(&mut self, setup: S, routine: R)$/;"	P	implementation:Bencher
iterated	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub(crate) iterated: bool,         \/\/ Have we iterated this benchmark?$/;"	m	struct:Bencher
iteration_count	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    iteration_count: u64,$/;"	m	struct:CsvRow
iteration_counts	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub(crate) fn iteration_counts($/;"	P	implementation:ActualSamplingMode
iteration_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/iteration_times.rs	/^pub(crate) fn iteration_times($/;"	f
iteration_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn iteration_times(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:Gnuplot
iteration_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^mod iteration_times;$/;"	n
iteration_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn iteration_times(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>);$/;"	P	interface:Plotter
iteration_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn iteration_times(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:PlottersBackend
iteration_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^mod iteration_times;$/;"	n
iteration_times_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/iteration_times.rs	/^pub(crate) fn iteration_times_comparison($/;"	f
iteration_times_comparison_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/iteration_times.rs	/^fn iteration_times_comparison_figure($/;"	f
iteration_times_comparison_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/iteration_times.rs	/^pub(crate) fn iteration_times_comparison_figure($/;"	f
iteration_times_comparison_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/iteration_times.rs	/^pub(crate) fn iteration_times_comparison_small($/;"	f
iteration_times_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/iteration_times.rs	/^fn iteration_times_figure($/;"	f
iteration_times_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/iteration_times.rs	/^pub(crate) fn iteration_times_figure($/;"	f
iteration_times_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/iteration_times.rs	/^pub(crate) fn iteration_times_small($/;"	f
iters	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub(crate) iters: u64,             \/\/ Number of times to iterate this benchmark$/;"	m	struct:Bencher
iters	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    iters: Vec<f64>,$/;"	m	struct:SavedSample
iters_per_batch	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn iters_per_batch(self, iters: u64) -> u64 {$/;"	P	implementation:BatchSize
kb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn kb(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
kb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn kb<V: Into<u64>>(size: V) -> u64 {$/;"	f
kde	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod kde;$/;"	n
kde	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^pub mod kde;$/;"	n
kernel	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    kernel: K,$/;"	m	struct:Kde
kernel	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^pub mod kernel;$/;"	n
kib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn kib(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
kib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn kib<V: Into<u64>>(size: V) -> u64 {$/;"	f
left_shift	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub fn left_shift(&mut self, shift: usize) {$/;"	P	implementation:Decimal
len	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    pub fn len(&self) -> usize {$/;"	P	implementation:Data
len	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub fn len(&self) -> usize {$/;"	P	implementation:Span
len	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    pub fn len(&self) -> usize {$/;"	P	implementation:PathElementStack
length	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub length: usize,$/;"	m	struct:Bucket
lexer	/home/jcoombes/Src/chisel-json/src/lib.rs	/^pub mod lexer;$/;"	n
lexer_error	/home/jcoombes/Src/chisel-json/src/errors.rs	/^macro_rules! lexer_error {$/;"	M
libc	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    const CHECK_LENGTH: usize = 2 * size_of::<*const libc::c_void>() \/ size_of::<u8>();$/;"	C	function:validate
libc	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^            if !validate(frame_pointer as *const libc::c_void) {$/;"	C	method:Trace::trace
line	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub line: usize,$/;"	m	struct:Coords
line_chart	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    line_chart: Option<String>,$/;"	m	struct:SummaryContext
line_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn line_comparison($/;"	P	implementation:Gnuplot
line_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/summary.rs	/^pub fn line_comparison($/;"	f
line_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn line_comparison($/;"	P	interface:Plotter
line_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn line_comparison($/;"	P	implementation:PlottersBackend
line_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^pub fn line_comparison($/;"	f
line_comparison_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub fn line_comparison_path(&self) -> PathBuf {$/;"	P	implementation:PlotContext
line_comparison_series_data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^fn line_comparison_series_data<'a>($/;"	f
lineno	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn lineno(&self) -> Option<u32> {$/;"	P	implementation:Symbol
lineno	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn lineno(&self) -> Option<u32>;$/;"	P	interface:Symbol
lineno	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn lineno(&self) -> u32 {$/;"	P	implementation:Symbol
lineno	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub lineno: Option<u32>,$/;"	m	struct:Symbol
lines_from_relative_file	/home/jcoombes/Src/chisel-json/src/test_macros.rs	/^macro_rules! lines_from_relative_file {$/;"	M
list_existing_benchmarks	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn list_existing_benchmarks<P>(directory: &P) -> Result<Vec<BenchmarkId>>$/;"	f
load	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn load<A, P: ?Sized>(path: &P) -> Result<A>$/;"	f
load_baseline	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    load_baseline: Option<String>,$/;"	m	struct:Criterion
load_summary_data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn load_summary_data<'a>($/;"	P	implementation:Html
log_error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/error.rs	/^pub(crate) fn log_error(e: &Error) {$/;"	f
log_if_err	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/macros_private.rs	/^macro_rules! log_if_err {$/;"	M
lower	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    lower: String,$/;"	m	struct:ConfidenceInterval
lower_bound	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub lower_bound: f64,$/;"	m	struct:ConfidenceInterval
macros	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod macros;$/;"	n
macros_private	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod macros_private;$/;"	n
mad	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    mad: ConfidenceInterval,$/;"	m	struct:Context
make_filename_safe	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^pub fn make_filename_safe(string: &str) -> String {$/;"	f
mantissa	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub mantissa: u64,$/;"	m	struct:AdjustedMantissa
mantissa	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    pub mantissa: u64,$/;"	m	struct:Number
many_digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    pub many_digits: bool,$/;"	m	struct:Number
map	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    pub fn map(&self, xs: &[A]) -> Box<[A]> {$/;"	f
map	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    map: HashCounter<T>,$/;"	m	struct:Collector
match_digit	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_digit {$/;"	M
match_escape	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_escape {$/;"	M
match_escape_non_unicode_suffix	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_escape_non_unicode_suffix {$/;"	M
match_escape_unicode_suffix	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_escape_unicode_suffix {$/;"	M
match_exponent	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_exponent {$/;"	M
match_false	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn match_false(&mut self) -> ParserResult<PackedToken> {$/;"	P	implementation:Lexer
match_minus	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_minus {$/;"	M
match_non_zero_digit	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_non_zero_digit {$/;"	M
match_null	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn match_null(&mut self) -> ParserResult<PackedToken> {$/;"	P	implementation:Lexer
match_number	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn match_number(&mut self) -> ParserResult<PackedToken> {$/;"	P	implementation:Lexer
match_numeric_terminator	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_numeric_terminator {$/;"	M
match_period	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_period {$/;"	M
match_plus_minus	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_plus_minus {$/;"	M
match_quote	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_quote {$/;"	M
match_string	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn match_string(&mut self) -> ParserResult<PackedToken> {$/;"	P	implementation:Lexer
match_true	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn match_true(&mut self) -> ParserResult<PackedToken> {$/;"	P	implementation:Lexer
match_valid_number_prefix	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn match_valid_number_prefix(&mut self) -> ParserResult<bool> {$/;"	P	implementation:Lexer
match_zero	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! match_zero {$/;"	M
matched	/home/jcoombes/Src/chisel-json/src/events.rs	/^    pub matched: Match<'a>,$/;"	m	struct:Event
max	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn max(&self) -> A {$/;"	f
mb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn mb(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
mb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn mb<V: Into<u64>>(size: V) -> u64 {$/;"	f
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub mean: Distribution<f64>,$/;"	m	struct:ChangeDistributions
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub mean: Distribution<f64>,$/;"	m	struct:Distributions
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub mean: Estimate,$/;"	m	struct:ChangeEstimates
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub mean: Estimate,$/;"	m	struct:Estimates
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub mean: f64,$/;"	m	struct:ChangePointEstimates
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub mean: f64,$/;"	m	struct:PointEstimates
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    mean: ConfidenceInterval,$/;"	m	struct:Context
mean	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn mean(&self) -> A {$/;"	f
measurement	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub(crate) measurement: &'a M,     \/\/ Reference to the measurement object$/;"	m	struct:Bencher
measurement	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    measurement: M,$/;"	m	struct:Criterion
measurement	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub mod measurement;$/;"	n
measurement_complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    fn measurement_complete($/;"	P	implementation:FileCsvReport
measurement_complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn measurement_complete($/;"	P	implementation:Html
measurement_complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn measurement_complete($/;"	P	implementation:BencherReport
measurement_complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn measurement_complete($/;"	P	implementation:CliReport
measurement_complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn measurement_complete($/;"	P	interface:Report
measurement_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn measurement_start($/;"	P	implementation:BencherReport
measurement_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn measurement_start($/;"	P	implementation:CliReport
measurement_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn measurement_start($/;"	P	interface:Report
measurement_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub measurement_time: Duration,$/;"	m	struct:BenchmarkConfig
measurement_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) measurement_time: Option<Duration>,$/;"	m	struct:PartialBenchmarkConfig
measurement_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn measurement_time(&mut self, dur: Duration) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
measurement_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    measurement_time: Duration,$/;"	m	struct:BenchmarkConfig
measurement_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn measurement_time(mut self, dur: Duration) -> Criterion<M> {$/;"	P	implementation:Criterion
measurements	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) measurements: &'a MeasurementData<'a>,$/;"	m	struct:PlotData
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median: Distribution<f64>,$/;"	m	struct:ChangeDistributions
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median: Distribution<f64>,$/;"	m	struct:Distributions
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median: Estimate,$/;"	m	struct:ChangeEstimates
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median: Estimate,$/;"	m	struct:Estimates
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median: f64,$/;"	m	struct:ChangePointEstimates
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median: f64,$/;"	m	struct:PointEstimates
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    median: ConfidenceInterval,$/;"	m	struct:Context
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^    pub fn median(&self) -> A {$/;"	f
median	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn median(&self) -> A$/;"	f
median_abs_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median_abs_dev: Distribution<f64>,$/;"	m	struct:Distributions
median_abs_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median_abs_dev: Estimate,$/;"	m	struct:Estimates
median_abs_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub median_abs_dev: f64,$/;"	m	struct:PointEstimates
median_abs_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn median_abs_dev(&self, median: Option<A>) -> A$/;"	f
median_abs_dev_pct	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn median_abs_dev_pct(&self) -> A$/;"	f
message	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/common.rs	/^    pub message: Cow<'static, str>,$/;"	m	struct:DecoderError
mib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn mib(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
mib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn mib<V: Into<u64>>(size: V) -> u64 {$/;"	f
min	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn min(&self) -> A {$/;"	f
mixed	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^pub mod mixed;$/;"	n
mkdirp	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn mkdirp<P>(path: &P) -> Result<()>$/;"	f
mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    mode: Mode,$/;"	m	struct:Criterion
mul	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn mul(self, rhs: T) -> ByteSize {$/;"	f
mul	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn mul(self, other: Unit) -> Self::Output {$/;"	P	implementation:impl_ops::f64
mul	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn mul(self, other: Unit) -> Self::Output {$/;"	P	implementation:impl_ops::u64
mul	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn mul(self, other: f64) -> Self::Output {$/;"	P	implementation:impl_ops::Unit
mul	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn mul(self, other: u64) -> Self::Output {$/;"	P	implementation:impl_ops::Unit
mul_assign	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn mul_assign(&mut self, rhs: T) {$/;"	f
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    name: &'a str,$/;"	m	struct:ReportLink
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    name: String,$/;"	m	struct:IndividualBenchmark
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    name: String,$/;"	m	struct:Plot
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn name(&self) -> Option<Vec<u8>> {$/;"	P	implementation:Symbol
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn name(&self) -> Option<Vec<u8>>;$/;"	P	interface:Symbol
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn name(&self) -> String {$/;"	P	implementation:Symbol
name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub name: Option<Vec<u8>>,$/;"	m	struct:Symbol
nanos	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    nanos: u32,$/;"	m	struct:Duration
negative	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub negative: bool,$/;"	m	struct:Decimal
negative	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    pub negative: bool,$/;"	m	struct:Number
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    pub fn new(r: B) -> Self {$/;"	P	implementation:Utf8Decoder
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn new<S: Into<String>, P: ::std::fmt::Display>($/;"	P	implementation:BenchmarkId
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub(crate) fn new(criterion: &mut Criterion<M>, group_name: String) -> BenchmarkGroup<'_, M>/;"	P	implementation:BenchmarkGroup
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn new(mut socket: TcpStream) -> Result<Self, std::io::Error> {$/;"	P	implementation:InnerConnection
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn new(socket: TcpStream) -> Result<Self, std::io::Error> {$/;"	P	implementation:Connection
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn new(name: &str, url: &str) -> Plot {$/;"	P	implementation:Plot
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn new(output_directory: &Path, ids: &[&'a BenchmarkId]) -> BenchmarkGroup<'a> {$/;"	P	implementation:BenchmarkGroup
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    pub(crate) fn new(plotter: Box<dyn Plotter>) -> Html {$/;"	P	implementation:Html
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn new($/;"	P	implementation:BenchmarkId
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn new($/;"	P	implementation:CliReport
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    pub fn new(f: F) -> Function<M, F, T> {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    pub fn new(xs: &'a [X], ys: &'a [Y]) -> Data<'a, X, Y> {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^    pub fn new(data: Data<'a, X, Y>) -> Resamples<'a, X, Y> {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn new(size: usize) -> (Vec<A>, Vec<B>) {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn new(size: usize) -> (Vec<A>, Vec<B>, Vec<C>) {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn new(size: usize) -> (Vec<A>, Vec<B>, Vec<C>, Vec<D>) {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn new(size: usize) -> (Vec<A>,) {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn new(size: usize) -> Self;$/;"	P	interface:TupledDistributionsBuilder
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    pub fn new(sample: &'a Sample<A>, kernel: K, bw: Bandwidth) -> Kde<'a, A, K> {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^    pub fn new(sample: &'a Sample<A>) -> Resamples<'a, A> {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn new(slice: &[A]) -> &Sample<A> {$/;"	f
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn new(s: &'a [u8]) -> Self {$/;"	P	implementation:AsciiStr
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn new() -> std::io::Result<TempFdArray<T>> {$/;"	P	implementation:TempFdArray
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn new() -> std::io::Result<Self> {$/;"	P	implementation:Collector
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    pub fn new(frequency: c_int, output: Output<'b>) -> Self {$/;"	P	implementation:PProfProfiler
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn new($/;"	P	implementation:UnresolvedFrames
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn new() -> Result<Self> {$/;"	P	implementation:Profiler
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn new() -> Self {$/;"	P	implementation:ErrnoProtector
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn new(frequency: c_int) -> Result<ProfilerGuard<'static>> {$/;"	P	implementation:ProfilerGuard
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub(crate) fn new(profiler: &'a RwLock<Result<Profiler>>, timing: ReportTiming) -> Self {$/;"	P	implementation:ReportBuilder
new	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub fn new(frequency: c_int) -> Timer {$/;"	P	implementation:Timer
new	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    pub fn new(reader: B) -> Self {$/;"	P	implementation:Lexer
new_rng	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/rand_util.rs	/^pub fn new_rng() -> Rng {$/;"	f
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Utf8Decoder
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    fn next(&mut self) -> Option<(&'a X, &'a Y)> {$/;"	P	implementation:Pairs
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^    pub fn next(&mut self) -> Data<'_, X, Y> {$/;"	f
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fn next(&mut self) -> Option<(A, Label)> {$/;"	f
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^    pub fn next(&mut self) -> &Sample<A> {$/;"	f
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:BucketIterator
next	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:TempFdArrayIterator
next_char	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn next_char(&mut self) -> DecoderResult<char> {$/;"	P	implementation:Lexer
no_function	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub(crate) fn no_function() -> BenchmarkId {$/;"	P	implementation:BenchmarkId
no_function_with_input	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub(crate) fn no_function_with_input<P: ::std::fmt::Display>(parameter: P) -> BenchmarkId {$/;"	P	implementation:BenchmarkId
noise_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub noise_threshold: f64,$/;"	m	struct:BenchmarkConfig
noise_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) noise_threshold: Option<f64>,$/;"	m	struct:PartialBenchmarkConfig
noise_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn noise_threshold(&mut self, threshold: f64) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
noise_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    noise_threshold: f64,$/;"	m	struct:BenchmarkConfig
noise_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn noise_threshold(mut self, threshold: f64) -> Criterion<M> {$/;"	P	implementation:Criterion
noise_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub noise_threshold: f64,$/;"	m	struct:ComparisonData
nresamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub nresamples: usize,$/;"	m	struct:BenchmarkConfig
nresamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) nresamples: Option<usize>,$/;"	m	struct:PartialBenchmarkConfig
nresamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn nresamples(&mut self, n: usize) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
nresamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    nresamples: usize,$/;"	m	struct:BenchmarkConfig
nresamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn nresamples(mut self, n: usize) -> Criterion<M> {$/;"	P	implementation:Criterion
num_digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub num_digits: usize,$/;"	m	struct:Decimal
number	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod number;$/;"	n
number_of_digits_decimal_left_shift	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^fn number_of_digits_decimal_left_shift(d: &Decimal, mut shift: usize) -> usize {$/;"	f
offset_from	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn offset_from(&self, other: &Self) -> isize {$/;"	P	implementation:AsciiStr
open_pipe	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^fn open_pipe() -> nix::Result<()> {$/;"	f
outliers	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn outliers(&self, sample: &LabeledSample<'_, f64>) {$/;"	P	implementation:CliReport
outliers	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^pub mod outliers;$/;"	n
output	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    output: Output<'b>,$/;"	m	struct:PProfProfiler
output_directory	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    output_directory: PathBuf,$/;"	m	struct:Criterion
output_directory	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn output_directory(mut self, path: &Path) -> Criterion<M> {$/;"	P	implementation:Criterion
output_directory	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub output_directory: PathBuf,$/;"	m	struct:ReportContext
p_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    p_value: String,$/;"	m	struct:Comparison
p_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub p_value: f64,$/;"	m	struct:ComparisonData
p_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^    pub fn p_value(&self, t: A, tails: &Tails) -> A {$/;"	f
packed_token	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^macro_rules! packed_token {$/;"	M
parameter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub(crate) parameter: Option<String>,$/;"	m	struct:BenchmarkId
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^mod parse;$/;"	n
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn parse(s: &str) -> Result<ByteSize, String> {$/;"	f	function:tests::when_err
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn parse(s: &str) -> u64 {$/;"	f	function:tests::to_and_from_str
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^        fn parse(s: &str) -> u64 {$/;"	f	function:tests::when_ok
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod parse;$/;"	n
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^pub fn parse<T: FastFloat, S: AsRef<[u8]>>(s: S) -> Result<T> {$/;"	f
parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^pub fn parse<N: FromLexical, Bytes: AsRef<[u8]>>(bytes: Bytes) -> Result<N> {$/;"	f
parse	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn parse<Buffer: BufRead>(&self, input: Buffer) -> ParserResult<JsonValue> {$/;"	P	implementation:Parser
parse	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    fn parse<Buffer: BufRead, Callback>($/;"	P	implementation:Parser
parse_8digits_le	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^fn parse_8digits_le(mut v: u64) -> u64 {$/;"	f
parse_array	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn parse_array<Buffer: BufRead>(&self, lexer: &mut Lexer<Buffer>) -> ParserResult<JsonValue>/;"	P	implementation:Parser
parse_array	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    fn parse_array<Buffer: BufRead, Callback>($/;"	P	implementation:Parser
parse_bytes	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    pub fn parse_bytes(&self, bytes: &[u8]) -> ParserResult<JsonValue> {$/;"	P	implementation:Parser
parse_bytes	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    pub fn parse_bytes<Callback>(&self, bytes: &[u8], cb: &mut Callback) -> ParserResult<()>$/;"	P	implementation:Parser
parse_decimal	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^pub fn parse_decimal(mut s: &[u8]) -> Decimal {$/;"	f
parse_digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn parse_digits(&mut self, mut func: impl FnMut(u8)) {$/;"	P	implementation:AsciiStr
parse_digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^pub fn parse_digits(s: &mut &[u8], mut f: impl FnMut(u8)) {$/;"	f
parse_file	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    pub fn parse_file<PathLike: AsRef<Path>>(&self, path: PathLike) -> ParserResult<JsonValue> {$/;"	P	implementation:Parser
parse_file	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    pub fn parse_file<PathLike: AsRef<Path>, Callback>($/;"	P	implementation:Parser
parse_float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^    fn parse_float<S: AsRef<[u8]>>(s: S) -> Result<Self> {$/;"	P	interface:FastFloat
parse_float	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/parse.rs	/^pub fn parse_float<F: Float>(s: &[u8]) -> Option<(F, usize)> {$/;"	f
parse_float_partial	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^    fn parse_float_partial<S: AsRef<[u8]>>(s: S) -> Result<(Self, usize)> {$/;"	P	interface:FastFloat
parse_inf_nan	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^pub fn parse_inf_nan<F: Float>(s: &[u8]) -> Option<(F, usize)> {$/;"	f
parse_inf_rest	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    fn parse_inf_rest(s: &[u8]) -> usize {$/;"	f	function:parse_inf_nan
parse_long_mantissa	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/simple.rs	/^pub fn parse_long_mantissa<F: Float>(s: &[u8]) -> AdjustedMantissa {$/;"	f
parse_number	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^pub fn parse_number(s: &[u8]) -> Option<(Number, usize)> {$/;"	f
parse_numeric	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn parse_numeric($/;"	P	implementation:Lexer
parse_object	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn parse_object<Buffer: BufRead>(&self, lexer: &mut Lexer<Buffer>) -> ParserResult<JsonValue/;"	P	implementation:Parser
parse_object	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    fn parse_object<Buffer: BufRead, Callback>($/;"	P	implementation:Parser
parse_opt	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^        fn parse_opt(os: &Option<&str>) -> Option<f64> {$/;"	f	method:BenchmarkGroup::new
parse_partial	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^pub fn parse_partial<T: FastFloat, S: AsRef<[u8]>>(s: S) -> Result<(T, usize)> {$/;"	f
parse_partial	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^pub fn parse_partial<N: FromLexical, Bytes: AsRef<[u8]>>(bytes: Bytes) -> Result<(N, usize)> {$/;"	f
parse_partial_with_options	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^pub fn parse_partial_with_options<$/;"	f
parse_scientific	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^fn parse_scientific(s: &mut AsciiStr<'_>) -> i64 {$/;"	f
parse_str	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    pub fn parse_str(&self, str: &str) -> ParserResult<JsonValue> {$/;"	P	implementation:Parser
parse_str	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    pub fn parse_str<Callback>(&self, str: &str, cb: &mut Callback) -> ParserResult<()>$/;"	P	implementation:Parser
parse_value	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn parse_value<Buffer: BufRead>(&self, lexer: &mut Lexer<Buffer>) -> ParserResult<JsonValue>/;"	P	implementation:Parser
parse_value	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    fn parse_value<Buffer: BufRead, Callback>($/;"	P	implementation:Parser
parse_with_options	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^pub fn parse_with_options<N: FromLexicalWithOptions, Bytes: AsRef<[u8]>, const FORMAT: u128>($/;"	f
parser	/home/jcoombes/Src/chisel-json/src/lib.rs	/^pub mod parser;$/;"	n
parser_error	/home/jcoombes/Src/chisel-json/src/errors.rs	/^macro_rules! parser_error {$/;"	M
partial_cmp	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {$/;"	P	implementation:Coords
partial_config	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    partial_config: PartialBenchmarkConfig,$/;"	m	struct:BenchmarkGroup
pass_a_fuzz_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn pass_a_fuzz_test() {$/;"	f	module:tests
path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    path: Option<String>,$/;"	m	struct:ReportLink
path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    path: String,$/;"	m	struct:IndividualBenchmark
path	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    path: PathElementStack,$/;"	m	struct:Parser
path	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    path: PathElementStack,$/;"	m	struct:Parser
paths	/home/jcoombes/Src/chisel-json/src/lib.rs	/^mod paths;$/;"	n
pb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn pb(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
pb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn pb<V: Into<u64>>(size: V) -> u64 {$/;"	f
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn pdf(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:Gnuplot
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^mod pdf;$/;"	n
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/pdf.rs	/^pub(crate) fn pdf($/;"	f
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn pdf(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>);$/;"	P	interface:Plotter
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn pdf(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:PlottersBackend
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^mod pdf;$/;"	n
pdf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/pdf.rs	/^pub(crate) fn pdf($/;"	f
pdf_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/pdf.rs	/^pub(crate) fn pdf_comparison($/;"	f
pdf_comparison_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/pdf.rs	/^fn pdf_comparison_figure($/;"	f
pdf_comparison_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/pdf.rs	/^pub(crate) fn pdf_comparison_figure($/;"	f
pdf_comparison_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/pdf.rs	/^pub(crate) fn pdf_comparison_small($/;"	f
pdf_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/pdf.rs	/^pub(crate) fn pdf_small($/;"	f
pdf_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/pdf.rs	/^pub(crate) fn pdf_small($/;"	f
peek	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    pub fn peek(&self) -> Option<&PathElement> {$/;"	P	implementation:PathElementStack
percentiles	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^mod percentiles;$/;"	n
percentiles	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn percentiles(&self) -> Percentiles<A>$/;"	f
perf_signal_handler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^extern "C" fn perf_signal_handler($/;"	f
pib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn pib(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
pib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn pib<V: Into<u64>>(size: V) -> u64 {$/;"	f
plot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod plot;$/;"	n
plot_config	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) plot_config: PlotConfiguration,$/;"	m	struct:PartialBenchmarkConfig
plot_config	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn plot_config(&mut self, new_config: PlotConfiguration) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
plot_config	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub plot_config: PlotConfiguration,$/;"	m	struct:ReportContext
plotter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    plotter: RefCell<Box<dyn Plotter>>,$/;"	m	struct:Html
plotters_backend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^mod plotters_backend;$/;"	n
plotting_backend	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn plotting_backend(mut self, backend: PlottingBackend) -> Criterion<M> {$/;"	P	implementation:Criterion
point	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    point: String,$/;"	m	struct:ConfidenceInterval
point_estimate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub point_estimate: f64,$/;"	m	struct:Estimate
pop	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    pub fn pop(&mut self) -> Option<PathElement> {$/;"	P	implementation:PathElementStack
pow10_fast_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    fn pow10_fast_path(exponent: usize) -> Self {$/;"	P	implementation:f32
pow10_fast_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    fn pow10_fast_path(exponent: usize) -> Self {$/;"	P	implementation:f64
pow10_fast_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^    fn pow10_fast_path(exponent: usize) -> Self;$/;"	P	interface:Float
power	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^fn power(q: i32) -> i32 {$/;"	f
power2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub power2: i32,$/;"	m	struct:AdjustedMantissa
pprof	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^        pub fn pprof(&self) -> crate::Result<protos::Profile> {$/;"	P	implementation:protobuf::Report
print_overwritable	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn print_overwritable(&self, s: String) {$/;"	P	implementation:CliReport
private	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^mod private {$/;"	n
private	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/float.rs	/^mod private {$/;"	n
process_list	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    process_list: Vec<Child>,$/;"	m	struct:Gnuplot
profile	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn profile(&self, _id: &BenchmarkId, _context: &ReportContext, _profile_ns: f64) {}$/;"	P	interface:Report
profile	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn profile(&self, id: &BenchmarkId, _: &ReportContext, warmup_ns: f64) {$/;"	P	implementation:CliReport
profile	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn profile($/;"	P	interface:Routine
profile_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn profile_time(mut self, profile_time: Option<Duration>) -> Criterion<M> {$/;"	P	implementation:Criterion
profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    profiler: Box<RefCell<dyn Profiler>>,$/;"	m	struct:Criterion
profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub mod profiler;$/;"	n
profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod profiler;$/;"	n
profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    profiler: &'a RwLock<Result<Profiler>>,$/;"	m	struct:ProfilerGuard
profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    profiler: &'a RwLock<Result<Profiler>>,$/;"	m	struct:ReportBuilder
protobuf	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^mod protobuf {$/;"	n
protos	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^pub mod protos {$/;"	n
ptr	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    ptr: *const u8,$/;"	m	struct:AsciiStr
push	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn push(&mut self, tuple: (A, B)) {$/;"	f
push	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn push(&mut self, tuple: (A, B, C)) {$/;"	f
push	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn push(&mut self, tuple: (A, B, C, D)) {$/;"	f
push	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn push(&mut self, tuple: (A,)) {$/;"	f
push	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/tuple.rs	/^    fn push(&mut self, tuple: Self::Item);$/;"	P	interface:TupledDistributionsBuilder
push	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn push(&mut self, entry: T) -> std::io::Result<()> {$/;"	P	implementation:TempFdArray
push	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    pub fn push(&mut self, element: PathElement) {$/;"	P	implementation:PathElementStack
pushback	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn pushback(&mut self) {$/;"	P	implementation:Lexer
pushback	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    pushback: Option<char>,$/;"	m	struct:Lexer
quad_byte_sequence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! quad_byte_sequence {$/;"	M
quartiles	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/percentiles.rs	/^    pub fn quartiles(&self) -> (A, A, A) {$/;"	f
quick_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub quick_mode: bool,$/;"	m	struct:BenchmarkConfig
quick_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) quick_mode: Option<bool>,$/;"	m	struct:PartialBenchmarkConfig
r2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    r2: ConfidenceInterval,$/;"	m	struct:Context
r_squared	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/regression.rs	/^    pub fn r_squared(&self, data: &Data<'_, A, A>) -> A {$/;"	f
rand_util	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^mod rand_util;$/;"	n
raw_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn raw_name(&self) -> &[u8] {$/;"	P	implementation:Symbol
read_fd	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    read_fd: AtomicI32,$/;"	m	struct:Pipes
read_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn read_u64(&self) -> u64 {$/;"	P	interface:ByteSlice
read_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn read_u64(&self) -> u64 {$/;"	P	implementation:AsciiStr
reader_from_bytes	/home/jcoombes/Src/chisel-json/src/test_macros.rs	/^macro_rules! reader_from_bytes {$/;"	M
reader_from_file	/home/jcoombes/Src/chisel-json/src/test_macros.rs	/^macro_rules! reader_from_file {$/;"	M
reader_from_relative_file	/home/jcoombes/Src/chisel-json/src/test_macros.rs	/^macro_rules! reader_from_relative_file {$/;"	M
receive_buffer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    receive_buffer: Vec<u8>,$/;"	m	struct:InnerConnection
recommend_flat_sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn recommend_flat_sample_size(target_time: f64, met: f64) -> u64 {$/;"	P	implementation:ActualSamplingMode
recommend_linear_sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn recommend_linear_sample_size(target_time: f64, met: f64) -> u64 {$/;"	P	implementation:ActualSamplingMode
recv	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn recv(&mut self) -> Result<IncomingMessage, MessageError> {$/;"	P	implementation:InnerConnection
recv	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn recv(&self) -> Result<IncomingMessage, MessageError> {$/;"	P	implementation:Connection
red	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn red(&self, s: &str) -> String {$/;"	P	implementation:CliReport
register_signal_handler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn register_signal_handler(&self) -> Result<()> {$/;"	P	implementation:Profiler
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^fn regression($/;"	f
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn regression(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:Gnuplot
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^mod regression;$/;"	n
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/regression.rs	/^pub(crate) fn regression($/;"	f
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn regression(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>);$/;"	P	interface:Plotter
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn regression(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:PlottersBackend
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^mod regression;$/;"	n
regression	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^pub mod regression;$/;"	n
regression_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/regression.rs	/^pub(crate) fn regression_comparison($/;"	f
regression_comparison_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/regression.rs	/^fn regression_comparison_figure($/;"	f
regression_comparison_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/regression.rs	/^pub(crate) fn regression_comparison_figure($/;"	f
regression_comparison_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/regression.rs	/^pub(crate) fn regression_comparison_small($/;"	f
regression_exists	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    regression_exists: bool,$/;"	m	struct:IndividualBenchmark
regression_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/regression.rs	/^fn regression_figure($/;"	f
regression_figure	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/regression.rs	/^pub(crate) fn regression_figure($/;"	f
regression_small	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/regression.rs	/^pub(crate) fn regression_small($/;"	f
rel_distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/distributions.rs	/^fn rel_distribution($/;"	f
rel_distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/distributions.rs	/^fn rel_distribution($/;"	f
rel_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/distributions.rs	/^pub(crate) fn rel_distributions($/;"	f
rel_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn rel_distributions(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:Gnuplot
rel_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn rel_distributions(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>);$/;"	P	interface:Plotter
rel_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/distributions.rs	/^pub(crate) fn rel_distributions($/;"	f
rel_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn rel_distributions(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:PlottersBackend
related_bucket	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    related_bucket: &'a Bucket<T>,$/;"	m	struct:BucketIterator
relative_distributions	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub relative_distributions: ChangeDistributions,$/;"	m	struct:ComparisonData
relative_estimates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub relative_estimates: ChangeEstimates,$/;"	m	struct:ComparisonData
report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    report: Reports,$/;"	m	struct:Criterion
report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod report;$/;"	n
report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod report;$/;"	n
report	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn report(&self) -> ReportBuilder {$/;"	P	implementation:ProfilerGuard
report_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn report_path<P: AsRef<Path> + ?Sized>(&self, id: &BenchmarkId, file_name: &P) -> PathB/;"	P	implementation:ReportContext
reports_impl	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^macro_rules! reports_impl {$/;"	M
resamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^mod resamples;$/;"	n
resamples	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^mod resamples;$/;"	n
reset	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn reset(&mut self) {$/;"	P	implementation:Lexer
resolve_symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^    fn resolve_symbol<F: FnMut(&Self::S)>(&self, cb: F) {$/;"	P	implementation:Frame
resolve_symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    fn resolve_symbol<F: FnMut(&Self::S)>(&self, cb: F) {$/;"	P	implementation:Frame
resolve_symbol	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn resolve_symbol<F: FnMut(&Self::S)>(&self, cb: F);$/;"	P	interface:Frame
ret	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    ret: usize,$/;"	m	struct:FramePointerLayout
retain_baseline	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn retain_baseline(mut self, baseline: String, strict: bool) -> Criterion<M> {$/;"	P	implementation:Criterion
right_shift	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub fn right_shift(&mut self, shift: usize) {$/;"	P	implementation:Decimal
rng	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^    rng: Rng,$/;"	m	struct:Resamples
rng	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^    rng: Rng,$/;"	m	struct:Resamples
round	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub fn round(&self) -> u64 {$/;"	P	implementation:Decimal
routine	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod routine;$/;"	n
run_bench	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    fn run_bench<F, I>(&mut self, id: BenchmarkId, input: &I, f: F)$/;"	P	implementation:BenchmarkGroup
runner	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    runner: A,$/;"	m	struct:AsyncBencher
runner	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^pub fn runner(benches: &[&dyn Fn()]) {$/;"	f
running	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    running: bool,$/;"	m	struct:Profiler
sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn sample($/;"	P	interface:Routine
sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^    sample: &'a Sample<A>,$/;"	m	struct:Kde
sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/mod.rs	/^mod sample;$/;"	n
sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    sample: &'a Sample<A>,$/;"	m	struct:LabeledSample
sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^    sample: &'a [A],$/;"	m	struct:Resamples
sample	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn sample($/;"	P	implementation:Profiler
sample_counter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    sample_counter: i32,$/;"	m	struct:Profiler
sample_measured_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    sample_measured_value: f64,$/;"	m	struct:CsvRow
sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub sample_size: usize,$/;"	m	struct:BenchmarkConfig
sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) sample_size: Option<usize>,$/;"	m	struct:PartialBenchmarkConfig
sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn sample_size(&mut self, n: usize) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    sample_size: usize,$/;"	m	struct:BenchmarkConfig
sample_size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn sample_size(mut self, n: usize) -> Criterion<M> {$/;"	P	implementation:Criterion
sample_times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn sample_times(&self) -> &Sample<f64> {$/;"	P	implementation:MeasurementData
sample_timestamp	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub sample_timestamp: SystemTime,$/;"	m	struct:Frames
sample_timestamp	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub sample_timestamp: SystemTime,$/;"	m	struct:UnresolvedFrames
sampling_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub sampling_mode: SamplingMode,$/;"	m	struct:BenchmarkConfig
sampling_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) sampling_mode: Option<SamplingMode>,$/;"	m	struct:PartialBenchmarkConfig
sampling_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn sampling_mode(&mut self, new_mode: SamplingMode) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
sampling_mode	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    sampling_mode: ActualSamplingMode,$/;"	m	struct:SavedSample
save	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn save<D, P>(data: &D, path: &P) -> Result<()>$/;"	f
save_baseline	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn save_baseline(mut self, baseline: String) -> Criterion<M> {$/;"	P	implementation:Criterion
save_string	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/fs.rs	/^pub fn save_string<P>(data: &str, path: &P) -> Result<()>$/;"	f
sax	/home/jcoombes/Src/chisel-json/src/parser/mod.rs	/^pub mod sax;$/;"	n
scale_for_machines	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn scale_for_machines(&self, _values: &mut [f64]) -> &'static str {$/;"	P	implementation:DurationFormatter
scale_for_machines	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn scale_for_machines(&self, values: &mut [f64]) -> &'static str;$/;"	P	interface:ValueFormatter
scale_throughputs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn scale_throughputs($/;"	P	implementation:DurationFormatter
scale_throughputs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn scale_throughputs($/;"	P	interface:ValueFormatter
scale_values	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn scale_values(&self, ns: f64, values: &mut [f64]) -> &'static str {$/;"	P	implementation:DurationFormatter
scale_values	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn scale_values(&self, typical_value: f64, values: &mut [f64]) -> &'static str;$/;"	P	interface:ValueFormatter
secs	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    secs: u64,$/;"	m	struct:Duration
send	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn send(&mut self, message: &OutgoingMessage) -> Result<(), MessageError> {$/;"	P	implementation:InnerConnection
send	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn send(&self, message: &OutgoingMessage) -> Result<(), MessageError> {$/;"	P	implementation:Connection
send_buffer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    send_buffer: Vec<u8>,$/;"	m	struct:InnerConnection
sequence_type	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^fn sequence_type(b: u8) -> SequenceType {$/;"	f
serialize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	P	implementation:ByteSize
serve_value_formatter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    pub fn serve_value_formatter($/;"	P	implementation:Connection
set_flags	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    fn set_flags(fd: RawFd) -> nix::Result<()> {$/;"	f	function:create_pipe
setitimer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    fn setitimer(which: c_int, new_value: *mut Itimerval, old_value: *mut Itimerval) -> c_int;$/;"	f
short	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^pub fn short(n: f64) -> String {$/;"	f
short_max_len	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^    fn short_max_len() {$/;"	f	module:test
should_be_an_iterator	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^    fn should_be_an_iterator() {$/;"	f	module:tests
should_correctly_handle_invalid_numbers	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_correctly_handle_invalid_numbers() {$/;"	f	module:tests
should_correctly_identity_dodgy_strings	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_correctly_identity_dodgy_strings() {$/;"	f	module:tests
should_correctly_report_errors_for_booleans	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_correctly_report_errors_for_booleans() {$/;"	f	module:tests
should_parse_basic_test_files	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn should_parse_basic_test_files() {$/;"	f	module:tests
should_parse_basic_tokens	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_parse_basic_tokens() {$/;"	f	module:tests
should_parse_lengthy_arrays	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn should_parse_lengthy_arrays() {$/;"	f	module:tests
should_parse_null_and_booleans	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_parse_null_and_booleans() {$/;"	f	module:tests
should_parse_numerics	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_parse_numerics() {$/;"	f	module:tests
should_parse_simple_schema	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn should_parse_simple_schema() {$/;"	f	module:tests
should_parse_strings	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^    fn should_parse_strings() {$/;"	f	module:tests
should_parse_successfully	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    fn should_parse_successfully() {$/;"	f	module:tests
should_save_baseline	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    fn should_save_baseline(&self) -> bool {$/;"	P	implementation:Criterion
should_successfully_bail	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^    fn should_successfully_bail() {$/;"	f	module:tests
should_successfully_bail	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^    fn should_successfully_bail() {$/;"	f	module:tests
signed_short	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^fn signed_short(n: f64) -> String {$/;"	f
signed_short_max_len	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^    fn signed_short_max_len() {$/;"	f	module:test
significance_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub significance_level: f64,$/;"	m	struct:BenchmarkConfig
significance_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) significance_level: Option<f64>,$/;"	m	struct:PartialBenchmarkConfig
significance_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn significance_level(&mut self, sl: f64) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
significance_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    significance_level: f64,$/;"	m	struct:BenchmarkConfig
significance_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    significance_level: String,$/;"	m	struct:Comparison
significance_level	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn significance_level(mut self, sl: f64) -> Criterion<M> {$/;"	P	implementation:Criterion
significance_threshold	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub significance_threshold: f64,$/;"	m	struct:ComparisonData
simple	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod simple;$/;"	n
single_byte_sequence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! single_byte_sequence {$/;"	M
size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub fn size(mut self, s: Option<criterion_plot::Size>) -> PlotContext<'a> {$/;"	P	implementation:PlotContext
size	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub(crate) size: Option<(usize, usize)>,$/;"	m	struct:PlotContext
size_hint	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/tukey.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	f
skip_chars	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn skip_chars(&self, c: u8) -> &[u8] {$/;"	P	interface:ByteSlice
skip_chars2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn skip_chars2(&self, c1: u8, c2: u8) -> &[u8] {$/;"	P	interface:ByteSlice
slope	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub slope: Option<Distribution<f64>>,$/;"	m	struct:Distributions
slope	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub slope: Option<Estimate>,$/;"	m	struct:Estimates
slope	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    slope: Option<ConfidenceInterval>,$/;"	m	struct:Context
socket	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    socket: TcpStream,$/;"	m	struct:InnerConnection
source	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {$/;"	P	implementation:MessageError
span	/home/jcoombes/Src/chisel-json/src/events.rs	/^    pub span: Span,$/;"	m	struct:Event
stack_hash_counter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn stack_hash_counter() {$/;"	f	module:tests
stage	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/resamples.rs	/^    stage: Option<(Vec<X>, Vec<Y>)>,$/;"	m	struct:Resamples
stage	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^    stage: Option<Vec<A>>,$/;"	m	struct:Resamples
stage	/home/jcoombes/Src/chisel-json/src/errors.rs	/^    pub stage: Stage,$/;"	m	struct:Error
standard_error	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub standard_error: f64,$/;"	m	struct:Estimate
start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn start(&self) -> Self::Intermediate {$/;"	P	implementation:WallTime
start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn start(&self) -> Self::Intermediate;$/;"	P	interface:Measurement
start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn start(&mut self) -> Result<()> {$/;"	P	implementation:Profiler
start	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    pub start: Coords,$/;"	m	struct:Span
start_instant	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub start_instant: Instant,$/;"	m	struct:Timer
start_profiling	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^    fn start_profiling(&mut self, _benchmark_id: &str, _benchmark_dir: &Path) {}$/;"	P	implementation:ExternalProfiler
start_profiling	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^    fn start_profiling(&mut self, benchmark_id: &str, benchmark_dir: &Path);$/;"	P	interface:Profiler
start_profiling	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    fn start_profiling(&mut self, _benchmark_id: &str, _benchmark_dir: &Path) {$/;"	P	implementation:PProfProfiler
start_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub start_time: SystemTime,$/;"	m	struct:ReportTiming
start_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub start_time: SystemTime,$/;"	m	struct:Timer
state	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    state: usize,$/;"	m	struct:Pairs
stats	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/compare.rs	/^    fn stats(a: &Sample<f64>, b: &Sample<f64>) -> (f64, f64) {$/;"	f	function:estimates
stats	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/mod.rs	/^    fn stats(sample: &Sample<f64>) -> (f64, f64, f64, f64) {$/;"	f	function:estimates
stats	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^mod stats;$/;"	n
std_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub std_dev: Distribution<f64>,$/;"	m	struct:Distributions
std_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub std_dev: Estimate,$/;"	m	struct:Estimates
std_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub std_dev: f64,$/;"	m	struct:PointEstimates
std_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    std_dev: ConfidenceInterval,$/;"	m	struct:Context
std_dev	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn std_dev(&self, mean: Option<A>) -> A {$/;"	f
std_dev_pct	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn std_dev_pct(&self) -> A {$/;"	f
step	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn step(&mut self) -> &mut Self {$/;"	P	implementation:AsciiStr
step_by	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn step_by(&mut self, n: usize) -> &mut Self {$/;"	P	implementation:AsciiStr
stop	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    pub fn stop(&mut self) -> Result<()> {$/;"	P	implementation:Profiler
stop_profiling	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^    fn stop_profiling(&mut self, _benchmark_id: &str, _benchmark_dir: &Path) {}$/;"	P	implementation:ExternalProfiler
stop_profiling	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/profiler.rs	/^    fn stop_profiling(&mut self, benchmark_id: &str, benchmark_dir: &Path);$/;"	P	interface:Profiler
stop_profiling	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/criterion.rs	/^    fn stop_profiling(&mut self, _benchmark_id: &str, benchmark_dir: &Path) {$/;"	P	implementation:PProfProfiler
sub	/home/jcoombes/Src/chisel-json/src/coords.rs	/^    fn sub(self, rhs: Self) -> Self::Output {$/;"	P	implementation:Coords
sum	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^fn sum<A>(xs: &[A]) -> A$/;"	f
sum	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn sum(&self) -> A {$/;"	f
summarize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn summarize($/;"	P	implementation:Html
summarize	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn summarize($/;"	P	interface:Report
summary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^mod summary;$/;"	n
summary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^mod summary;$/;"	n
summary_scale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    summary_scale: AxisScale,$/;"	m	struct:PlotConfiguration
summary_scale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn summary_scale(mut self, new_scale: AxisScale) -> PlotConfiguration {$/;"	P	implementation:PlotConfiguration
summary_scale	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    summary_scale: AxisScale,$/;"	m	struct:PlotConfiguration
sweep	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/kde.rs	/^pub fn sweep($/;"	f
sweep_and_estimate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/kde.rs	/^pub fn sweep_and_estimate($/;"	f
symbol_address	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^    fn symbol_address(&self) -> *mut libc::c_void {$/;"	P	implementation:Frame
symbol_address	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    fn symbol_address(&self) -> *mut libc::c_void {$/;"	P	implementation:Frame
symbol_address	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn symbol_address(&self) -> *mut c_void;$/;"	P	interface:Frame
sys_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn sys_name(&self) -> Cow<str> {$/;"	P	implementation:Symbol
t	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn t(&self, other: &Sample<A>) -> A {$/;"	f
t_distribution	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub t_distribution: Distribution<f64>,$/;"	m	struct:ComparisonData
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/analysis/compare.rs	/^fn t_test($/;"	f
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn t_test(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:Gnuplot
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^mod t_test;$/;"	n
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/t_test.rs	/^pub(crate) fn t_test($/;"	f
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn t_test(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>);$/;"	P	interface:Plotter
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn t_test(&mut self, ctx: PlotContext<'_>, data: PlotData<'_>) {$/;"	P	implementation:PlottersBackend
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^mod t_test;$/;"	n
t_test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/t_test.rs	/^pub(crate) fn t_test($/;"	f
t_value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub t_value: f64,$/;"	m	struct:ComparisonData
table	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/lib.rs	/^mod table;$/;"	n
target_directory	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^        target_directory: PathBuf,$/;"	m	struct:cargo_target_directory::Metadata
tb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn tb(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
tb	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn tb<V: Into<u64>>(size: V) -> u64 {$/;"	f
temp_array	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    temp_array: TempFdArray<Entry<T>>,$/;"	m	struct:Collector
templates	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    templates: TinyTemplate<'static>,$/;"	m	struct:Html
terminated	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn terminated(&self, _id: &BenchmarkId, _context: &ReportContext) {}$/;"	P	interface:Report
terminated	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn terminated(&self, id: &BenchmarkId, _: &ReportContext) {$/;"	P	implementation:CliReport
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn test(&mut self, m: &M, parameter: &T) {$/;"	P	interface:Routine
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/bootstrap.rs	/^macro_rules! test {$/;"	M
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/bootstrap.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^mod test;$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/bootstrap.rs	/^macro_rules! test {$/;"	M
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/bootstrap.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^macro_rules! test {$/;"	M
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/kernel.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^macro_rules! test {$/;"	M
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/kde/mod.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/resamples.rs	/^mod test {$/;"	n
test	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^mod test {$/;"	n
test_arithmetic_op	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_arithmetic_op() {$/;"	f	module:tests
test_arithmetic_primitives	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_arithmetic_primitives() {$/;"	f	module:tests
test_benchmark_id_make_directory_name_unique	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_benchmark_id_make_directory_name_unique() {$/;"	f	module:test
test_benchmark_id_make_long_directory_name_unique	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_benchmark_id_make_long_directory_name_unique() {$/;"	f	module:test
test_comparison	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_comparison() {$/;"	f	module:tests
test_default	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_default() {$/;"	f	module:tests
test_display	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_display() {$/;"	f	module:tests
test_display_alignment	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_display_alignment() {$/;"	f	module:tests
test_full_multiplication	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^    fn test_full_multiplication() {$/;"	f	module:tests
test_macros	/home/jcoombes/Src/chisel-json/src/lib.rs	/^mod test_macros;$/;"	n
test_make_filename_safe_replaces_characters	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_make_filename_safe_replaces_characters() {$/;"	f	module:test
test_make_filename_safe_respects_character_boundaries	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_make_filename_safe_respects_character_boundaries() {$/;"	f	module:test
test_make_filename_safe_truncates_long_strings	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_make_filename_safe_truncates_long_strings() {$/;"	f	module:test
test_pass	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_pass(&self, _: &BenchmarkId, _: &ReportContext) {$/;"	P	implementation:CliReport
test_pass	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_pass(&self, _id: &BenchmarkId, _context: &ReportContext) {}$/;"	P	interface:Report
test_pow5_table	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^    fn test_pow5_table() {$/;"	f	module:tests
test_serde	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_serde() {$/;"	f	module:tests
test_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_start(&self, _id: &BenchmarkId, _context: &ReportContext) {}$/;"	P	interface:Report
test_start	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn test_start(&self, id: &BenchmarkId, _: &ReportContext) {$/;"	P	implementation:CliReport
test_to_string	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_to_string() {$/;"	f	module:tests
test_to_string_as	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    fn test_to_string_as() {$/;"	f	module:tests
test_utils	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^mod test_utils {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/binary.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/table.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/Src/chisel-json/src/lexer.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/Src/chisel-json/src/parser/dom.rs	/^mod tests {$/;"	n
tests	/home/jcoombes/Src/chisel-json/src/parser/sax.rs	/^mod tests {$/;"	n
text_overwrite	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn text_overwrite(&self) {$/;"	P	implementation:CliReport
thread_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub thread_id: u64,$/;"	m	struct:Frames
thread_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub thread_id: u64,$/;"	m	struct:UnresolvedFrames
thread_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub thread_name: String,$/;"	m	struct:Frames
thread_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub thread_name: [u8; MAX_THREAD_NAME],$/;"	m	struct:UnresolvedFrames
thread_name_length	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub thread_name_length: usize,$/;"	m	struct:UnresolvedFrames
thread_name_or_id	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/frames.rs	/^    pub fn thread_name_or_id(&self) -> String {$/;"	P	implementation:Frames
throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn throughput(&mut self, throughput: Throughput) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    throughput: Option<Throughput>,$/;"	m	struct:BenchmarkGroup
throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    throughput: Vec<Throughput>,$/;"	m	struct:RawBenchmarkId
throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    throughput: Option<ConfidenceInterval>,$/;"	m	struct:Context
throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub throughput: Option<Throughput>,$/;"	m	struct:BenchmarkId
throughput	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub throughput: Option<Throughput>,$/;"	m	struct:MeasurementData
throughput_num	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    throughput_num: Option<&'a str>,$/;"	m	struct:CsvRow
throughput_type	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    throughput_type: Option<&'a str>,$/;"	m	struct:CsvRow
thrpt_change	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    thrpt_change: Option<ConfidenceInterval>,$/;"	m	struct:Comparison
thumbnail	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub fn thumbnail(mut self, value: bool) -> PlotContext<'a> {$/;"	P	implementation:PlotContext
thumbnail_height	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    thumbnail_height: usize,$/;"	m	struct:Context
thumbnail_height	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    thumbnail_height: usize,$/;"	m	struct:SummaryContext
thumbnail_width	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    thumbnail_width: usize,$/;"	m	struct:Context
thumbnail_width	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    thumbnail_width: usize,$/;"	m	struct:SummaryContext
tib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub const fn tib(size: u64) -> ByteSize {$/;"	P	implementation:ByteSize
tib	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn tib<V: Into<u64>>(size: V) -> u64 {$/;"	f
time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/format.rs	/^pub fn time(ns: f64) -> String {$/;"	f
timer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/lib.rs	/^mod timer;$/;"	n
timer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    timer: Option<Timer>,$/;"	m	struct:ProfilerGuard
times	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    times: Vec<f64>,$/;"	m	struct:SavedSample
timing	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub timing: ReportTiming,$/;"	m	struct:Report
timing	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    pub timing: ReportTiming,$/;"	m	struct:UnresolvedReport
timing	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/report.rs	/^    timing: ReportTiming,$/;"	m	struct:ReportBuilder
timing	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub fn timing(&self) -> ReportTiming {$/;"	P	implementation:Timer
title	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    title: String,$/;"	m	struct:Context
title	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    title: String,$/;"	m	struct:BenchmarkId
to_and_from_str	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    fn to_and_from_str() {$/;"	f	module:tests
to_async	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub fn to_async<'b, A: AsyncExecutor>(&'b mut self, runner: A) -> AsyncBencher<'a, 'b, A, M>/;"	P	implementation:Bencher
to_complete	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) fn to_complete(&self, defaults: &BenchmarkConfig) -> BenchmarkConfig {$/;"	P	implementation:PartialBenchmarkConfig
to_f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn to_f64(&self, val: &Self::Value) -> f64 {$/;"	P	implementation:WallTime
to_f64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn to_f64(&self, value: &Self::Value) -> f64;$/;"	P	interface:Measurement
to_gnuplot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/summary.rs	/^    fn to_gnuplot(self) -> Scale {$/;"	P	implementation:AxisScale
to_string	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^pub fn to_string(bytes: u64, si_prefix: bool) -> String {$/;"	f
to_string	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^pub fn to_string<N: ToLexical>(n: N) -> String {$/;"	f
to_string_as	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^    pub fn to_string_as(&self, si_unit: bool) -> String {$/;"	P	implementation:ByteSize
to_string_with_options	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^pub fn to_string_with_options<N: ToLexicalWithOptions, const FORMAT: u128>($/;"	f
trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/backtrace_rs.rs	/^    fn trace<F: FnMut(&Self::Frame) -> bool>(_: *mut libc::c_void, cb: F) {$/;"	P	implementation:Trace
trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/frame_pointer.rs	/^    fn trace<F: FnMut(&Self::Frame) -> bool>(ucontext: *mut libc::c_void, mut cb: F) {$/;"	P	implementation:Trace
trace	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/backtrace/mod.rs	/^    fn trace<F: FnMut(&Self::Frame) -> bool>(_: *mut libc::c_void, cb: F)$/;"	P	interface:Trace
trigger_lazy	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^fn trigger_lazy() {$/;"	f
trim	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub fn trim(&mut self) {$/;"	P	implementation:Decimal
triple_byte_sequence	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/utf8.rs	/^macro_rules! triple_byte_sequence {$/;"	M
truncate_to_character_boundary	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^fn truncate_to_character_boundary(s: &mut String, max_len: usize) {$/;"	f
truncated	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub truncated: bool,$/;"	m	struct:Decimal
try_add_digit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/decimal.rs	/^    pub fn try_add_digit(&mut self, digit: u8) {$/;"	P	implementation:Decimal
try_else_return	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/macros_private.rs	/^macro_rules! try_else_return {$/;"	M
try_fast_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^    pub fn try_fast_path<F: Float>(&self) -> Option<F> {$/;"	P	implementation:Number
try_iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    fn try_iter(&self) -> std::io::Result<impl Iterator<Item = &T>> {$/;"	P	implementation:TempFdArray
try_iter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^    pub fn try_iter(&self) -> std::io::Result<impl Iterator<Item = &Entry<T>>> {$/;"	P	implementation:Collector
try_parse	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^        fn try_parse(s: &str) -> Option<f64> {$/;"	f	method:Html::summarize
try_parse_19digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^fn try_parse_19digits(s: &mut AsciiStr<'_>, x: &mut u64) {$/;"	f
try_parse_8digits_le	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^fn try_parse_8digits_le(s: &mut AsciiStr<'_>, x: &mut u64) {$/;"	f
try_parse_digits	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/number.rs	/^fn try_parse_digits(s: &mut AsciiStr<'_>, x: &mut u64) {$/;"	f
try_read_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub fn try_read_u64(&self) -> Option<u64> {$/;"	P	implementation:AsciiStr
tukey	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/outliers/mod.rs	/^pub mod tukey;$/;"	n
tuple	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^pub mod tuple;$/;"	n
tv_sec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub tv_sec: i64,$/;"	m	struct:Timeval
tv_usec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/timer.rs	/^    pub tv_usec: i64,$/;"	m	struct:Timeval
typical	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub fn typical(&self) -> &Distribution<f64> {$/;"	P	implementation:Distributions
typical	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub fn typical(&self) -> &Estimate {$/;"	P	implementation:Estimates
u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Add<Unit> for u64 {$/;"	c	module:impl_ops
u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    impl ops::Mul<Unit> for u64 {$/;"	c	module:impl_ops
u8	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^        let src = &value as *const _ as *const u8;$/;"	C	method:ByteSlice::write_u64
u8	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^impl ByteSlice for [u8] {}$/;"	c
u8	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^        let buf = unsafe { std::slice::from_raw_parts(addr as *const u8, CHECK_LENGTH) };$/;"	C	function:validate
u8	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/collector.rs	/^                self.buffer.as_ptr() as *const u8,$/;"	C	method:TempFdArray::flush_buffer
unit	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    unit: &'static str,$/;"	m	struct:CsvRow
univariate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/mod.rs	/^pub mod univariate;$/;"	n
unregister_signal_handler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^    fn unregister_signal_handler(&self) -> Result<()> {$/;"	P	implementation:Profiler
upper	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    upper: String,$/;"	m	struct:ConfidenceInterval
upper_bound	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/estimate.rs	/^    pub upper_bound: f64,$/;"	m	struct:ConfidenceInterval
url	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    url: String,$/;"	m	struct:Plot
utf8	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/chisel-decoders-1.0.1/src/lib.rs	/^pub mod utf8;$/;"	n
validate	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^pub fn validate(addr: *const libc::c_void) -> bool {$/;"	f
validate_heap	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    fn validate_heap() {$/;"	f	module:test
validate_stack	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    fn validate_stack() {$/;"	f	module:test
value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/bencher.rs	/^    pub(crate) value: M::Value,        \/\/ The measured value$/;"	m	struct:Bencher
value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    value: Option<&'a str>,$/;"	m	struct:CsvRow
value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    fn value(output_directory: &Path, group_id: &str, value_str: &'a str) -> ReportLink<'a> {$/;"	P	implementation:ReportLink
value	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    value: Option<ReportLink<'a>>,$/;"	m	struct:BenchmarkValueGroup
value_str	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    value_str: Option<String>,$/;"	m	struct:RawBenchmarkId
value_str	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub value_str: Option<String>,$/;"	m	struct:BenchmarkId
value_type	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub fn value_type(&self) -> Option<ValueType> {$/;"	P	implementation:BenchmarkId
values	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    values: Option<Vec<ReportLink<'a>>>,$/;"	m	struct:BenchmarkGroup
var	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/univariate/sample.rs	/^    pub fn var(&self, mean: Option<A>) -> A {$/;"	f
vec	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/test.rs	/^pub fn vec<T>(size: usize, start: usize) -> Option<Vec<T>>$/;"	f
vec	/home/jcoombes/Src/chisel-json/src/paths.rs	/^    vec: Vec<PathElement>,$/;"	m	struct:PathElementStack
vector_as_slice	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-6.1.1/src/lib.rs	/^unsafe fn vector_as_slice<T>(buf: &mut Vec<T>) -> &mut [T] {$/;"	f
verbosity	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    pub verbosity: CliVerbosity,$/;"	m	struct:CliReport
violin	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn violin($/;"	P	implementation:Gnuplot
violin	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/summary.rs	/^pub fn violin($/;"	f
violin	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn violin($/;"	P	interface:Plotter
violin	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn violin($/;"	P	implementation:PlottersBackend
violin	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/summary.rs	/^pub fn violin($/;"	f
violin_path	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    pub fn violin_path(&self) -> PathBuf {$/;"	P	implementation:PlotContext
violin_plot	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/html/mod.rs	/^    violin_plot: Option<String>,$/;"	m	struct:SummaryContext
visit_i64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^            fn visit_i64<E: de::Error>(self, value: i64) -> Result<Self::Value, E> {$/;"	P	implementation:ByteSize::deserialize::ByteSizeVistor
visit_str	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^            fn visit_str<E: de::Error>(self, value: &str) -> Result<Self::Value, E> {$/;"	P	implementation:ByteSize::deserialize::ByteSizeVistor
visit_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^            fn visit_u64<E: de::Error>(self, value: u64) -> Result<Self::Value, E> {$/;"	P	implementation:ByteSize::deserialize::ByteSizeVistor
wait	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/gnuplot_backend/mod.rs	/^    fn wait(&mut self) {$/;"	P	implementation:Gnuplot
wait	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/mod.rs	/^    fn wait(&mut self);$/;"	P	interface:Plotter
wait	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/plot/plotters_backend/mod.rs	/^    fn wait(&mut self) {}$/;"	P	implementation:PlottersBackend
warm_up	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn warm_up(&mut self, m: &M, how_long: Duration, parameter: &T) -> (u64, u64) {$/;"	f
warm_up	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/routine.rs	/^    fn warm_up(&mut self, m: &M, how_long: Duration, parameter: &T) -> (u64, u64);$/;"	P	interface:Routine
warm_up_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub warm_up_time: Duration,$/;"	m	struct:BenchmarkConfig
warm_up_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark.rs	/^    pub(crate) warm_up_time: Option<Duration>,$/;"	m	struct:PartialBenchmarkConfig
warm_up_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/benchmark_group.rs	/^    pub fn warm_up_time(&mut self, dur: Duration) -> &mut Self {$/;"	P	implementation:BenchmarkGroup
warm_up_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/connection.rs	/^    warm_up_time: Duration,$/;"	m	struct:BenchmarkConfig
warm_up_time	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn warm_up_time(mut self, dur: Duration) -> Criterion<M> {$/;"	P	implementation:Criterion
warmup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn warmup(&self, _id: &BenchmarkId, _context: &ReportContext, _warmup_ns: f64) {}$/;"	P	interface:Report
warmup	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn warmup(&self, id: &BenchmarkId, _: &ReportContext, warmup_ns: f64) {$/;"	P	implementation:CliReport
when_err	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    fn when_err() {$/;"	f	module:tests
when_ok	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/parse.rs	/^    fn when_ok() {$/;"	f	module:tests
with_color	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn with_color(&self, color: Color, s: &str) -> String {$/;"	P	implementation:CliReport
with_filter	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn with_filter<S: Into<String>>(mut self, filter: S) -> Criterion<M> {$/;"	P	implementation:Criterion
with_measurement	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn with_measurement<M2: Measurement>(self, m: M2) -> Criterion<M2> {$/;"	P	implementation:Criterion
with_output_color	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn with_output_color(mut self, enabled: bool) -> Criterion<M> {$/;"	P	implementation:Criterion
with_plots	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn with_plots(mut self) -> Criterion<M> {$/;"	P	implementation:Criterion
with_profiler	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn with_profiler<P: Profiler + 'static>(self, p: P) -> Criterion<M> {$/;"	P	implementation:Criterion
without_plots	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/lib.rs	/^    pub fn without_plots(mut self) -> Criterion<M> {$/;"	P	implementation:Criterion
write_data	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    fn write_data($/;"	P	implementation:CsvReportWriter
write_fd	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/addr_validate.rs	/^    write_fd: AtomicI32,$/;"	m	struct:Pipes
write_file	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    fn write_file($/;"	P	implementation:FileCsvReport
write_thread_name	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^fn write_thread_name(current_thread: libc::pthread_t, name: &mut [libc::c_char]) {$/;"	f
write_thread_name_fallback	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/pprof-0.11.1/src/profiler.rs	/^fn write_thread_name_fallback(current_thread: libc::pthread_t, name: &mut [libc::c_char]) {$/;"	f
write_u64	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    fn write_u64(&mut self, value: u64) {$/;"	P	interface:ByteSlice
writer	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/csv_report.rs	/^    writer: Writer<W>,$/;"	m	struct:CsvReportWriter
x	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/bytesize-1.2.0/src/lib.rs	/^            x: ByteSize,$/;"	m	struct:tests::test_serde::S
x	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    pub fn x(&self) -> &'a Sample<X> {$/;"	f
y	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/stats/bivariate/mod.rs	/^    pub fn y(&self) -> &'a Sample<Y> {$/;"	f
yellow	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/report.rs	/^    fn yellow(&self, s: &str) -> String {$/;"	P	implementation:CliReport
zero	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn zero(&self) -> Self::Value {$/;"	P	implementation:WallTime
zero	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/criterion-0.4.0/src/measurement.rs	/^    fn zero(&self) -> Self::Value;$/;"	P	interface:Measurement
zero_pow2	/home/jcoombes/.cargo/registry/src/github.com-1ecc6299db9ec823/fast-float-0.2.0/src/common.rs	/^    pub const fn zero_pow2(power2: i32) -> Self {$/;"	P	implementation:AdjustedMantissa