sqlx-crud-macros 0.4.0

Proc macro implemtation for sqlx-crud to implement Create, Read, Update, and Delete (CRUD) methods on SQLx for you 🪄 📖 📝 ❌
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Abi {$/;"	c
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Abi {$/;"	c
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Abi {}$/;"	c
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Abi {$/;"	c
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Abi {$/;"	c
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for Abi {$/;"	c	module:parsing
Abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for Abi {$/;"	c	module:printing
AfterEq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        AfterEq,$/;"	e	enum:parsing::WhereClauseLocation
AllowNoSemi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    struct AllowNoSemi(bool);$/;"	s	module:parsing
AllowStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Clone for AllowStruct {$/;"	c	module:parsing
AllowStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Copy for AllowStruct {}$/;"	c	module:parsing
AllowStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    pub(crate) struct AllowStruct(bool);$/;"	s	module:parsing
Alone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Alone,$/;"	e	enum:Spacing
And	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        And,$/;"	e	enum:parsing::Precedence
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for AngleBracketedGenericArguments {$/;"	c
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl AngleBracketedGenericArguments {$/;"	c	method:AngleBracketedGenericArguments::fmt
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for AngleBracketedGenericArguments {$/;"	c
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for AngleBracketedGenericArguments {}$/;"	c
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for AngleBracketedGenericArguments {$/;"	c
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for AngleBracketedGenericArguments {$/;"	c
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl AngleBracketedGenericArguments {$/;"	c	module:parsing
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl Parse for AngleBracketedGenericArguments {$/;"	c	module:parsing
AngleBracketedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for AngleBracketedGenericArguments {$/;"	c	module:printing
Any	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Any,$/;"	e	enum:parsing::Precedence
Any	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    Any,$/;"	e	enum:DbType
AnyDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^pub trait AnyDelimiter {$/;"	i
Arithmetic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Arithmetic,$/;"	e	enum:parsing::Precedence
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for Arm {$/;"	c	module:parsing
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for Arm {$/;"	c	module:printing
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Arm {$/;"	c
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Arm {$/;"	c
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Arm {}$/;"	c
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Arm {$/;"	c
Arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Arm {$/;"	c
Assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Assign,$/;"	e	enum:parsing::Precedence
AssocConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for AssocConst {$/;"	c
AssocConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for AssocConst {$/;"	c
AssocConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for AssocConst {}$/;"	c
AssocConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for AssocConst {$/;"	c
AssocConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for AssocConst {$/;"	c
AssocConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for AssocConst {$/;"	c	module:printing
AssocType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for AssocType {$/;"	c
AssocType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for AssocType {$/;"	c
AssocType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for AssocType {}$/;"	c
AssocType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for AssocType {$/;"	c
AssocType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for AssocType {$/;"	c
AssocType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for AssocType {$/;"	c	module:printing
AttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for AttrStyle {$/;"	c
AttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Copy for AttrStyle {}$/;"	c
AttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for AttrStyle {$/;"	c
AttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for AttrStyle {}$/;"	c
AttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for AttrStyle {$/;"	c
AttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for AttrStyle {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl ToTokens for Attribute {$/;"	c	module:printing
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^impl Attribute {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^impl<'a> FilterAttrs<'a> for &'a [Attribute] {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Attribute {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Attribute {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Attribute {}$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Attribute {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Attribute {$/;"	c
Attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^impl ParseQuote for Attribute {$/;"	c
BTreeSet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'q, T: 'q> RepAsIteratorExt<'q> for BTreeSet<T> {$/;"	c	module:ext
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for BareFnArg {$/;"	c
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for BareFnArg {$/;"	c
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for BareFnArg {}$/;"	c
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for BareFnArg {$/;"	c
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for BareFnArg {$/;"	c
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for BareFnArg {$/;"	c	module:parsing
BareFnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for BareFnArg {$/;"	c	module:printing
BareVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for BareVariadic {$/;"	c
BareVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for BareVariadic {$/;"	c
BareVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for BareVariadic {}$/;"	c
BareVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for BareVariadic {$/;"	c
BareVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for BareVariadic {$/;"	c
BareVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for BareVariadic {$/;"	c	module:printing
BeforeEq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        BeforeEq,$/;"	e	enum:parsing::WhereClauseLocation
BigInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^impl AddAssign<u8> for BigInt {$/;"	c
BigInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^impl BigInt {$/;"	c
BigInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^impl MulAssign<u8> for BigInt {$/;"	c
BigInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^pub(crate) struct BigInt {$/;"	s
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for BinOp {$/;"	c
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Copy for BinOp {}$/;"	c
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for BinOp {$/;"	c
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for BinOp {}$/;"	c
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for BinOp {$/;"	c
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for BinOp {$/;"	c
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^    impl Parse for BinOp {$/;"	c	module:parsing
BinOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^    impl ToTokens for BinOp {$/;"	c	module:printing
BitAnd	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        BitAnd,$/;"	e	enum:parsing::Precedence
BitOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        BitOr,$/;"	e	enum:parsing::Precedence
BitXor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        BitXor,$/;"	e	enum:parsing::Precedence
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Block {$/;"	c
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Block {$/;"	c
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Block {}$/;"	c
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Block {$/;"	c
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Block {$/;"	c
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl Block {$/;"	c	module:parsing
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl Parse for Block {$/;"	c	module:parsing
Block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl ToTokens for Block {$/;"	c	module:printing
Bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/export.rs	/^    pub type Bool = bool;$/;"	t	module:help
Both	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        Both,$/;"	e	enum:parsing::WhereClauseLocation
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for BoundLifetimes {$/;"	c
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for BoundLifetimes {$/;"	c
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for BoundLifetimes {}$/;"	c
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for BoundLifetimes {$/;"	c
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for BoundLifetimes {$/;"	c
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for BoundLifetimes {$/;"	c	module:parsing
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for BoundLifetimes {$/;"	c	module:printing
BoundLifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl Default for BoundLifetimes {$/;"	c
Box	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl<T: ?Sized + ToTokens> ToTokens for Box<T> {$/;"	c
Box	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<T: Parse> Parse for Box<T> {$/;"	c
Box	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^impl ParseQuote for Box<Pat> {$/;"	c
Brace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Brace,$/;"	e	enum:Delimiter
Brace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Token for Brace {$/;"	c
Braces	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub struct Braces<'a> {$/;"	s
Bracket	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Bracket,$/;"	e	enum:Delimiter
Bracket	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Token for Bracket {$/;"	c
Brackets	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub struct Brackets<'a> {$/;"	s
CamelOptions	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^pub struct CamelOptions {$/;"	s
Cast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Cast,$/;"	e	enum:parsing::Precedence
Chain	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    Chain(Rc<Cell<Unexpected>>),$/;"	e	enum:Unexpected
Compare	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Compare,$/;"	e	enum:parsing::Precedence
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    Compiler {$/;"	e	enum:DelimSpanEnum
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(DeferredTokenStream),$/;"	e	enum:TokenStream
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::Group),$/;"	e	enum:Group
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::Ident),$/;"	e	enum:Ident
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::LexError),$/;"	e	enum:LexError
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::Literal),$/;"	e	enum:Literal
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::SourceFile),$/;"	e	enum:SourceFile
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::Span),$/;"	e	enum:Span
Compiler	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Compiler(proc_macro::token_stream::IntoIter),$/;"	e	enum:TokenTreeIter
Config	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^impl<'a> Config<'a> {$/;"	c
Config	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^struct Config<'a> {$/;"	s
Const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        Const(ExprConst),$/;"	e	enum:parsing::PatRangeBound
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ConstParam {$/;"	c
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ConstParam {$/;"	c
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ConstParam {}$/;"	c
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ConstParam {$/;"	c
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ConstParam {$/;"	c
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for ConstParam {$/;"	c	module:parsing
ConstParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for ConstParam {$/;"	c	module:printing
ConstParams	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> Iterator for ConstParams<'a> {$/;"	c
ConstParams	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct ConstParams<'a>(Iter<'a, GenericParam>);$/;"	s
ConstParamsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> Iterator for ConstParamsMut<'a> {$/;"	c
ConstParamsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct ConstParamsMut<'a>(IterMut<'a, GenericParam>);$/;"	s
Constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Constraint {$/;"	c
Constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Constraint {$/;"	c
Constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Constraint {}$/;"	c
Constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Constraint {$/;"	c
Constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Constraint {$/;"	c
Constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for Constraint {$/;"	c	module:printing
Cow	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^impl<T> IdentFragment for Cow<'_, T>$/;"	c
Cow	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl<'a, T: ?Sized + ToOwned + ToTokens> ToTokens for Cow<'a, T> {$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^impl<'a> Cursor<'a> {$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^pub(crate) struct Cursor<'a> {$/;"	s
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl<'a> Clone for Cursor<'a> {$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl<'a> Copy for Cursor<'a> {}$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl<'a> Cursor<'a> {$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl<'a> Eq for Cursor<'a> {}$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl<'a> PartialEq for Cursor<'a> {$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl<'a> PartialOrd for Cursor<'a> {$/;"	c
Cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub struct Cursor<'a> {$/;"	s
CustomToken	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^pub trait CustomToken {$/;"	i
Data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Data {$/;"	c
Data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Data {$/;"	c
Data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Data {}$/;"	c
Data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Data {$/;"	c
Data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Data {$/;"	c
DataEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for DataEnum {$/;"	c
DataEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl DataEnum {$/;"	c	method:DataEnum::fmt
DataEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for DataEnum {$/;"	c
DataEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for DataEnum {}$/;"	c
DataEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for DataEnum {$/;"	c
DataEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for DataEnum {$/;"	c
DataStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for DataStruct {$/;"	c
DataStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl DataStruct {$/;"	c	method:DataStruct::fmt
DataStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for DataStruct {$/;"	c
DataStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for DataStruct {}$/;"	c
DataStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for DataStruct {$/;"	c
DataStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for DataStruct {$/;"	c
DataUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for DataUnion {$/;"	c
DataUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl DataUnion {$/;"	c	method:DataUnion::fmt
DataUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for DataUnion {$/;"	c
DataUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for DataUnion {}$/;"	c
DataUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for DataUnion {$/;"	c
DataUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for DataUnion {$/;"	c
DbType	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^enum DbType {$/;"	g
DbType	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^impl DbType {$/;"	c
DbType	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^impl From<&str> for DbType {$/;"	c
DeferredTokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl DeferredTokenStream {$/;"	c
DeferredTokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) struct DeferredTokenStream {$/;"	s
DelimSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^impl Debug for DelimSpan {$/;"	c
DelimSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^impl DelimSpan {$/;"	c
DelimSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^pub struct DelimSpan {$/;"	s
DelimSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    impl Sealed for DelimSpan {}$/;"	c	module:private
DelimSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^impl Spanned for DelimSpan {$/;"	c
DelimSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<DelimSpan> for DelimSpan {$/;"	c
DelimSpanEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^enum DelimSpanEnum {$/;"	g
Delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub enum Delimiter {$/;"	g
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^    impl Parse for DeriveInput {$/;"	c	module:parsing
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^    impl ToTokens for DeriveInput {$/;"	c	module:printing
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for DeriveInput {$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for DeriveInput {$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for DeriveInput {}$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for DeriveInput {$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for DeriveInput {$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl From<ItemEnum> for DeriveInput {$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl From<ItemStruct> for DeriveInput {$/;"	c
DeriveInput	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl From<ItemUnion> for DeriveInput {$/;"	c
Disallowed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        Disallowed,$/;"	e	enum:parsing::TypeDefaultness
DisplayAttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl<'a> Display for DisplayAttrStyle<'a> {$/;"	c	module:parsing
DisplayAttrStyle	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub(super) struct DisplayAttrStyle<'a>(pub &'a AttrStyle);$/;"	s	module:parsing
DisplayPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl<'a> Display for DisplayPath<'a> {$/;"	c	module:parsing
DisplayPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub(super) struct DisplayPath<'a>(pub &'a Path);$/;"	s	module:parsing
EMPTY_ENTRY	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^        static EMPTY_ENTRY: UnsafeSyncEntry = UnsafeSyncEntry(Entry::End(0));$/;"	v	method:Cursor::empty
Empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<T> TrivialDrop for iter::Empty<T> {}$/;"	c
End	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    End(isize),$/;"	e	enum:Entry
End	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    End(T),$/;"	e	enum:Pair
Entry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^enum Entry {$/;"	g
Err	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    type Err = LexError;$/;"	t	implementation:Literal::byte_string::Literal
Err	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    type Err = LexError;$/;"	t	implementation:TokenStream
Err	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    type Err = LexError;$/;"	t	implementation:Literal
Err	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    type Err = LexError;$/;"	t	implementation:TokenStream
Err	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    type Err = LexError;$/;"	t	implementation:Literal
Err	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    type Err = LexError;$/;"	t	implementation:TokenStream
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Clone for Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Debug for Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Display for Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Extend<Error> for Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl From<LexError> for Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl IntoIterator for Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl std::error::Error for Error {}$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl<'a> IntoIterator for &'a Error {$/;"	c
Error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^pub struct Error {$/;"	s
ErrorMessage	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Clone for ErrorMessage {$/;"	c
ErrorMessage	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Debug for ErrorMessage {$/;"	c
ErrorMessage	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl ErrorMessage {$/;"	c
ErrorMessage	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^struct ErrorMessage {$/;"	s
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Expr {$/;"	c	module:parsing
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for Expr {$/;"	c	module:parsing
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl Expr {$/;"	c
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Expr {$/;"	c
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Expr {$/;"	c
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Expr {}$/;"	c
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Expr {$/;"	c
Expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Expr {$/;"	c
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprArray {$/;"	c	module:parsing
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprArray {$/;"	c	module:printing
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprArray {$/;"	c
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprArray {$/;"	c	method:ExprArray::fmt
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprArray {$/;"	c
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprArray {}$/;"	c
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprArray {$/;"	c
ExprArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprArray {$/;"	c
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprAssign {$/;"	c	module:printing
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprAssign {$/;"	c
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprAssign {$/;"	c	method:ExprAssign::fmt
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprAssign {$/;"	c
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprAssign {}$/;"	c
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprAssign {$/;"	c
ExprAssign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprAssign {$/;"	c
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprAsync {$/;"	c	module:parsing
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprAsync {$/;"	c	module:printing
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprAsync {$/;"	c
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprAsync {$/;"	c	method:ExprAsync::fmt
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprAsync {$/;"	c
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprAsync {}$/;"	c
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprAsync {$/;"	c
ExprAsync	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprAsync {$/;"	c
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprAwait {$/;"	c	module:printing
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprAwait {$/;"	c
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprAwait {$/;"	c	method:ExprAwait::fmt
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprAwait {$/;"	c
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprAwait {}$/;"	c
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprAwait {$/;"	c
ExprAwait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprAwait {$/;"	c
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprBinary {$/;"	c	module:printing
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprBinary {$/;"	c
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprBinary {$/;"	c	method:ExprBinary::fmt
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprBinary {$/;"	c
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprBinary {}$/;"	c
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprBinary {$/;"	c
ExprBinary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprBinary {$/;"	c
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprBlock {$/;"	c	module:parsing
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprBlock {$/;"	c	module:printing
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprBlock {$/;"	c
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprBlock {$/;"	c	method:ExprBlock::fmt
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprBlock {$/;"	c
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprBlock {}$/;"	c
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprBlock {$/;"	c
ExprBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprBlock {$/;"	c
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprBreak {$/;"	c	module:parsing
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprBreak {$/;"	c	module:printing
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprBreak {$/;"	c
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprBreak {$/;"	c	method:ExprBreak::fmt
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprBreak {$/;"	c
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprBreak {}$/;"	c
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprBreak {$/;"	c
ExprBreak	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprBreak {$/;"	c
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprCall {$/;"	c	module:printing
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprCall {$/;"	c
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprCall {$/;"	c	method:ExprCall::fmt
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprCall {$/;"	c
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprCall {}$/;"	c
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprCall {$/;"	c
ExprCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprCall {$/;"	c
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprCast {$/;"	c	module:printing
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprCast {$/;"	c
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprCast {$/;"	c	method:ExprCast::fmt
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprCast {$/;"	c
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprCast {}$/;"	c
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprCast {$/;"	c
ExprCast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprCast {$/;"	c
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprClosure {$/;"	c	module:parsing
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprClosure {$/;"	c	module:printing
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprClosure {$/;"	c
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprClosure {$/;"	c	method:ExprClosure::fmt
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprClosure {$/;"	c
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprClosure {}$/;"	c
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprClosure {$/;"	c
ExprClosure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprClosure {$/;"	c
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprConst {$/;"	c	module:parsing
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprConst {$/;"	c	module:printing
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprConst {$/;"	c
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprConst {$/;"	c	method:ExprConst::fmt
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprConst {$/;"	c
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprConst {}$/;"	c
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprConst {$/;"	c
ExprConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprConst {$/;"	c
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprContinue {$/;"	c	module:parsing
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprContinue {$/;"	c	module:printing
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprContinue {$/;"	c
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprContinue {$/;"	c	method:ExprContinue::fmt
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprContinue {$/;"	c
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprContinue {}$/;"	c
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprContinue {$/;"	c
ExprContinue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprContinue {$/;"	c
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprField {$/;"	c	module:printing
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprField {$/;"	c
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprField {$/;"	c	method:ExprField::fmt
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprField {$/;"	c
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprField {}$/;"	c
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprField {$/;"	c
ExprField	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprField {$/;"	c
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprForLoop {$/;"	c	module:parsing
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprForLoop {$/;"	c	module:printing
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprForLoop {$/;"	c
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprForLoop {$/;"	c	method:ExprForLoop::fmt
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprForLoop {$/;"	c
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprForLoop {}$/;"	c
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprForLoop {$/;"	c
ExprForLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprForLoop {$/;"	c
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprGroup {$/;"	c	module:printing
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprGroup {$/;"	c
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprGroup {$/;"	c	method:ExprGroup::fmt
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprGroup {$/;"	c
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprGroup {}$/;"	c
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprGroup {$/;"	c
ExprGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprGroup {$/;"	c
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprIf {$/;"	c	module:parsing
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprIf {$/;"	c	module:printing
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprIf {$/;"	c
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprIf {$/;"	c	method:ExprIf::fmt
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprIf {$/;"	c
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprIf {}$/;"	c
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprIf {$/;"	c
ExprIf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprIf {$/;"	c
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprIndex {$/;"	c	module:printing
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprIndex {$/;"	c
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprIndex {$/;"	c	method:ExprIndex::fmt
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprIndex {$/;"	c
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprIndex {}$/;"	c
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprIndex {$/;"	c
ExprIndex	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprIndex {$/;"	c
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprInfer {$/;"	c	module:parsing
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprInfer {$/;"	c	module:printing
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprInfer {$/;"	c
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprInfer {$/;"	c	method:ExprInfer::fmt
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprInfer {$/;"	c
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprInfer {}$/;"	c
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprInfer {$/;"	c
ExprInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprInfer {$/;"	c
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprLet {$/;"	c	module:parsing
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprLet {$/;"	c	module:printing
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprLet {$/;"	c
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprLet {$/;"	c	method:ExprLet::fmt
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprLet {$/;"	c
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprLet {}$/;"	c
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprLet {$/;"	c
ExprLet	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprLet {$/;"	c
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprLit {$/;"	c	module:parsing
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprLit {$/;"	c	module:printing
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprLit {$/;"	c
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprLit {$/;"	c	method:ExprLit::fmt
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprLit {$/;"	c
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprLit {}$/;"	c
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprLit {$/;"	c
ExprLit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprLit {$/;"	c
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprLoop {$/;"	c	module:parsing
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprLoop {$/;"	c	module:printing
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprLoop {$/;"	c
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprLoop {$/;"	c	method:ExprLoop::fmt
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprLoop {$/;"	c
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprLoop {}$/;"	c
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprLoop {$/;"	c
ExprLoop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprLoop {$/;"	c
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprMacro {$/;"	c	module:parsing
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprMacro {$/;"	c	module:printing
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprMacro {$/;"	c
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprMacro {$/;"	c	method:ExprMacro::fmt
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprMacro {$/;"	c
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprMacro {}$/;"	c
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprMacro {$/;"	c
ExprMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprMacro {$/;"	c
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprMatch {$/;"	c	module:parsing
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprMatch {$/;"	c	module:printing
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprMatch {$/;"	c
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprMatch {$/;"	c	method:ExprMatch::fmt
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprMatch {$/;"	c
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprMatch {}$/;"	c
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprMatch {$/;"	c
ExprMatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprMatch {$/;"	c
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprMethodCall {$/;"	c	module:printing
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprMethodCall {$/;"	c
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprMethodCall {$/;"	c	method:ExprMethodCall::fmt
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprMethodCall {$/;"	c
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprMethodCall {}$/;"	c
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprMethodCall {$/;"	c
ExprMethodCall	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprMethodCall {$/;"	c
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprParen {$/;"	c	module:parsing
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprParen {$/;"	c	module:printing
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprParen {$/;"	c
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprParen {$/;"	c	method:ExprParen::fmt
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprParen {$/;"	c
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprParen {}$/;"	c
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprParen {$/;"	c
ExprParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprParen {$/;"	c
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprPath {$/;"	c	module:parsing
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprPath {$/;"	c	module:printing
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprPath {$/;"	c
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprPath {$/;"	c	method:ExprPath::fmt
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprPath {$/;"	c
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprPath {}$/;"	c
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprPath {$/;"	c
ExprPath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprPath {$/;"	c
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprRange {$/;"	c	module:printing
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprRange {$/;"	c
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprRange {$/;"	c	method:ExprRange::fmt
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprRange {$/;"	c
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprRange {}$/;"	c
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprRange {$/;"	c
ExprRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprRange {$/;"	c
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprReference {$/;"	c	module:parsing
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprReference {$/;"	c	module:printing
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprReference {$/;"	c
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprReference {$/;"	c	method:ExprReference::fmt
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprReference {$/;"	c
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprReference {}$/;"	c
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprReference {$/;"	c
ExprReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprReference {$/;"	c
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprRepeat {$/;"	c	module:parsing
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprRepeat {$/;"	c	module:printing
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprRepeat {$/;"	c
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprRepeat {$/;"	c	method:ExprRepeat::fmt
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprRepeat {$/;"	c
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprRepeat {}$/;"	c
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprRepeat {$/;"	c
ExprRepeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprRepeat {$/;"	c
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprReturn {$/;"	c	module:parsing
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprReturn {$/;"	c	module:printing
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprReturn {$/;"	c
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprReturn {$/;"	c	method:ExprReturn::fmt
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprReturn {$/;"	c
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprReturn {}$/;"	c
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprReturn {$/;"	c
ExprReturn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprReturn {$/;"	c
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprStruct {$/;"	c	module:parsing
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprStruct {$/;"	c	module:printing
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprStruct {$/;"	c
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprStruct {$/;"	c	method:ExprStruct::fmt
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprStruct {$/;"	c
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprStruct {}$/;"	c
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprStruct {$/;"	c
ExprStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprStruct {$/;"	c
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprTry {$/;"	c	module:printing
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprTry {$/;"	c
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprTry {$/;"	c	method:ExprTry::fmt
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprTry {$/;"	c
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprTry {}$/;"	c
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprTry {$/;"	c
ExprTry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprTry {$/;"	c
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprTryBlock {$/;"	c	module:parsing
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprTryBlock {$/;"	c	module:printing
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprTryBlock {$/;"	c
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprTryBlock {$/;"	c	method:ExprTryBlock::fmt
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprTryBlock {$/;"	c
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprTryBlock {}$/;"	c
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprTryBlock {$/;"	c
ExprTryBlock	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprTryBlock {$/;"	c
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprTuple {$/;"	c	module:printing
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprTuple {$/;"	c
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprTuple {$/;"	c	method:ExprTuple::fmt
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprTuple {$/;"	c
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprTuple {}$/;"	c
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprTuple {$/;"	c
ExprTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprTuple {$/;"	c
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprUnary {$/;"	c	module:parsing
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprUnary {$/;"	c	module:printing
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprUnary {$/;"	c
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprUnary {$/;"	c	method:ExprUnary::fmt
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprUnary {$/;"	c
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprUnary {}$/;"	c
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprUnary {$/;"	c
ExprUnary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprUnary {$/;"	c
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprUnsafe {$/;"	c	module:parsing
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprUnsafe {$/;"	c	module:printing
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprUnsafe {$/;"	c
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprUnsafe {$/;"	c	method:ExprUnsafe::fmt
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprUnsafe {$/;"	c
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprUnsafe {}$/;"	c
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprUnsafe {$/;"	c
ExprUnsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprUnsafe {$/;"	c
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprWhile {$/;"	c	module:parsing
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprWhile {$/;"	c	module:printing
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprWhile {$/;"	c
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprWhile {$/;"	c	method:ExprWhile::fmt
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprWhile {$/;"	c
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprWhile {}$/;"	c
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprWhile {$/;"	c
ExprWhile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprWhile {$/;"	c
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for ExprYield {$/;"	c	module:parsing
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for ExprYield {$/;"	c	module:printing
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ExprYield {$/;"	c
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ExprYield {$/;"	c	method:ExprYield::fmt
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ExprYield {$/;"	c
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ExprYield {}$/;"	c
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ExprYield {$/;"	c
ExprYield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ExprYield {$/;"	c
F	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^impl<F: Copy + FnOnce(TokenMarker) -> T, T: Token> Peek for F {$/;"	c
F	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^impl<F: Copy + FnOnce(TokenMarker) -> T, T: Token> Sealed for F {}$/;"	c
F	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<F, T> Parser for F$/;"	c
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    Fallback(fallback::Span),$/;"	e	enum:DelimSpanEnum
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::Group),$/;"	e	enum:Group
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::Ident),$/;"	e	enum:Ident
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::LexError),$/;"	e	enum:LexError
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::Literal),$/;"	e	enum:Literal
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::SourceFile),$/;"	e	enum:SourceFile
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::Span),$/;"	e	enum:Span
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::TokenStream),$/;"	e	enum:TokenStream
Fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    Fallback(fallback::TokenTreeIter),$/;"	e	enum:TokenTreeIter
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl Field {$/;"	c	module:parsing
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl ToTokens for Field {$/;"	c	module:printing
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Field {$/;"	c
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Field {$/;"	c
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Field {}$/;"	c
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Field {$/;"	c
Field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Field {$/;"	c
FieldMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for FieldMutability {$/;"	c
FieldMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for FieldMutability {$/;"	c
FieldMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for FieldMutability {}$/;"	c
FieldMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for FieldMutability {$/;"	c
FieldMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for FieldMutability {$/;"	c
FieldPat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for FieldPat {$/;"	c
FieldPat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for FieldPat {$/;"	c
FieldPat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for FieldPat {}$/;"	c
FieldPat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for FieldPat {$/;"	c
FieldPat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for FieldPat {$/;"	c
FieldPat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for FieldPat {$/;"	c	module:printing
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for FieldValue {$/;"	c	module:parsing
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for FieldValue {$/;"	c	module:printing
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for FieldValue {$/;"	c
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for FieldValue {$/;"	c
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for FieldValue {}$/;"	c
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for FieldValue {$/;"	c
FieldValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for FieldValue {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^impl Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^impl IntoIterator for Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^impl<'a> IntoIterator for &'a Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^impl<'a> IntoIterator for &'a mut Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Fields {}$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Fields {$/;"	c
Fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Fields {$/;"	c
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl Parse for FieldsNamed {$/;"	c	module:parsing
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl ToTokens for FieldsNamed {$/;"	c	module:printing
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for FieldsNamed {$/;"	c
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl FieldsNamed {$/;"	c	method:FieldsNamed::fmt
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for FieldsNamed {$/;"	c
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for FieldsNamed {}$/;"	c
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for FieldsNamed {$/;"	c
FieldsNamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for FieldsNamed {$/;"	c
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl Parse for FieldsUnnamed {$/;"	c	module:parsing
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl ToTokens for FieldsUnnamed {$/;"	c	module:printing
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for FieldsUnnamed {$/;"	c
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl FieldsUnnamed {$/;"	c	method:FieldsUnnamed::fmt
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for FieldsUnnamed {$/;"	c
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for FieldsUnnamed {}$/;"	c
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for FieldsUnnamed {$/;"	c
FieldsUnnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for FieldsUnnamed {$/;"	c
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/file.rs	/^    impl Parse for File {$/;"	c	module:parsing
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/file.rs	/^    impl ToTokens for File {$/;"	c	module:printing
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for File {$/;"	c
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for File {$/;"	c
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for File {}$/;"	c
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for File {$/;"	c
File	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for File {$/;"	c
FileInfo	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl FileInfo {$/;"	c
FileInfo	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^struct FileInfo {$/;"	s
FilterAttrs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^pub(crate) trait FilterAttrs<'a> {$/;"	i
FlexibleItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl FlexibleItemType {$/;"	c	module:parsing
FlexibleItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    struct FlexibleItemType {$/;"	s	module:parsing
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for FnArg {$/;"	c
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for FnArg {$/;"	c
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for FnArg {}$/;"	c
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for FnArg {$/;"	c
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for FnArg {$/;"	c
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        FnArg(FnArg),$/;"	e	enum:parsing::FnArgOrVariadic
FnArg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for FnArg {$/;"	c	module:parsing
FnArgOrVariadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    enum FnArgOrVariadic {$/;"	g	module:parsing
Fold	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub trait Fold {$/;"	i
FoldHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^    pub(crate) trait FoldHelper {$/;"	i	module:fold
ForeignItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ForeignItem {$/;"	c
ForeignItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ForeignItem {$/;"	c
ForeignItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ForeignItem {}$/;"	c
ForeignItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ForeignItem {$/;"	c
ForeignItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ForeignItem {$/;"	c
ForeignItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ForeignItem {$/;"	c	module:parsing
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ForeignItemFn {$/;"	c
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ForeignItemFn {$/;"	c	method:ForeignItemFn::fmt
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ForeignItemFn {$/;"	c
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ForeignItemFn {}$/;"	c
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ForeignItemFn {$/;"	c
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ForeignItemFn {$/;"	c
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ForeignItemFn {$/;"	c	module:parsing
ForeignItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ForeignItemFn {$/;"	c	module:printing
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ForeignItemMacro {$/;"	c
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ForeignItemMacro {$/;"	c	method:ForeignItemMacro::fmt
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ForeignItemMacro {$/;"	c
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ForeignItemMacro {}$/;"	c
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ForeignItemMacro {$/;"	c
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ForeignItemMacro {$/;"	c
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ForeignItemMacro {$/;"	c	module:parsing
ForeignItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ForeignItemMacro {$/;"	c	module:printing
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ForeignItemStatic {$/;"	c
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ForeignItemStatic {$/;"	c	method:ForeignItemStatic::fmt
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ForeignItemStatic {$/;"	c
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ForeignItemStatic {}$/;"	c
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ForeignItemStatic {$/;"	c
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ForeignItemStatic {$/;"	c
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ForeignItemStatic {$/;"	c	module:parsing
ForeignItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ForeignItemStatic {$/;"	c	module:printing
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ForeignItemType {$/;"	c
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ForeignItemType {$/;"	c	method:ForeignItemType::fmt
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ForeignItemType {$/;"	c
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ForeignItemType {}$/;"	c
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ForeignItemType {$/;"	c
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ForeignItemType {$/;"	c
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ForeignItemType {$/;"	c	module:parsing
ForeignItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ForeignItemType {$/;"	c	module:printing
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for GenericArgument {$/;"	c
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for GenericArgument {$/;"	c
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for GenericArgument {}$/;"	c
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for GenericArgument {$/;"	c
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for GenericArgument {$/;"	c
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl Parse for GenericArgument {$/;"	c	module:parsing
GenericArgument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for GenericArgument {$/;"	c	module:printing
GenericParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for GenericParam {$/;"	c
GenericParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for GenericParam {$/;"	c
GenericParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for GenericParam {}$/;"	c
GenericParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for GenericParam {$/;"	c
GenericParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for GenericParam {$/;"	c
GenericParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for GenericParam {$/;"	c	module:parsing
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Generics {$/;"	c
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Generics {$/;"	c
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Generics {}$/;"	c
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Generics {$/;"	c
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Generics {$/;"	c
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for Generics {$/;"	c	module:parsing
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for Generics {$/;"	c	module:printing
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl Default for Generics {$/;"	c
Generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl Generics {$/;"	c
GetSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl GetSpan<Span> {$/;"	c	module:get_span
GetSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<T> Deref for GetSpan<T> {$/;"	c	module:get_span
GetSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub struct GetSpan<T>(pub(crate) GetSpanInner<T>);$/;"	s	module:get_span
GetSpanBase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<T> GetSpanBase<T> {$/;"	c	module:get_span
GetSpanBase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub struct GetSpanBase<T>(pub(crate) T);$/;"	s	module:get_span
GetSpanInner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl GetSpanInner<DelimSpan> {$/;"	c	module:get_span
GetSpanInner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<T> Deref for GetSpanInner<T> {$/;"	c	module:get_span
GetSpanInner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub struct GetSpanInner<T>(pub(crate) GetSpanBase<T>);$/;"	s	module:get_span
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Debug for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Display for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct Group {$/;"	s
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Group(Group),$/;"	e	enum:TokenTree
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct Group {$/;"	s
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Display for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<fallback::Group> for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum Group {$/;"	g
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    Group(Group, usize),$/;"	e	enum:Entry
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub struct Group<'a> {$/;"	s
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Parse for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Clone for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Copy for Group {}$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Debug for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Hash for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl PartialEq for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Token for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl cmp::Eq for Group {}$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl private::Sealed for Group {}$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl std::default::Default for Group {$/;"	c
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^pub fn Group<S: IntoSpans<Span>>(span: S) -> Group {$/;"	f
Group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^pub struct Group {$/;"	s
HasIterator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl BitOr<HasIterator> for HasIterator {$/;"	c
HasIterator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl BitOr<ThereIsNoIteratorInRepetition> for HasIterator {$/;"	c
HasIterator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub struct HasIterator; \/\/ True$/;"	s
I	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, I> IterMutTrait<'a, T> for I$/;"	c
I	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, I> IterTrait<'a, T> for I$/;"	c
INIT	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^static INIT: Once = Once::new();$/;"	v
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Debug for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Display for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl PartialEq for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl<T> PartialEq<T> for Ident$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct Ident {$/;"	s
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Ident(Ident),$/;"	e	enum:TokenTree
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Eq for Ident {}$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Hash for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Ord for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl PartialEq for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl PartialOrd for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl<T> PartialEq<T> for Ident$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct Ident {$/;"	s
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Display for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl PartialEq for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl<T> PartialEq<T> for Ident$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum Ident {$/;"	g
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^impl IdentFragment for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    Ident(Ident),$/;"	e	enum:Entry
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    impl Sealed for Ident {}$/;"	c	module:private
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^impl IdentExt for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^    impl Parse for Ident {$/;"	c	module:parsing
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^    impl Token for Ident {$/;"	c	module:parsing
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^impl From<Token![_]> for Ident {$/;"	c
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^pub fn Ident(marker: lookahead::TokenMarker) -> Ident {$/;"	f
Ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl private::Sealed for Ident {}$/;"	c
IdentAny	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    pub struct IdentAny;$/;"	s	module:private
IdentAny	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^impl CustomToken for private::IdentAny {$/;"	c
IdentExt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^pub trait IdentExt: Sized + private::Sealed {$/;"	i
IdentFragment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^pub trait IdentFragment {$/;"	i
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: IdentFragment + fmt::Binary> fmt::Binary for IdentFragmentAdapter<T> {$/;"	c
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: IdentFragment + fmt::LowerHex> fmt::LowerHex for IdentFragmentAdapter<T> {$/;"	c
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: IdentFragment + fmt::Octal> fmt::Octal for IdentFragmentAdapter<T> {$/;"	c
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: IdentFragment + fmt::UpperHex> fmt::UpperHex for IdentFragmentAdapter<T> {$/;"	c
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: IdentFragment> IdentFragmentAdapter<T> {$/;"	c
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: IdentFragment> fmt::Display for IdentFragmentAdapter<T> {$/;"	c
IdentFragmentAdapter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub struct IdentFragmentAdapter<T: IdentFragment>(pub T);$/;"	s
ImplGenerics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl<'a> ToTokens for ImplGenerics<'a> {$/;"	c	module:printing
ImplGenerics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct ImplGenerics<'a>(&'a Generics);$/;"	s
ImplItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ImplItem {$/;"	c
ImplItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ImplItem {$/;"	c
ImplItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ImplItem {}$/;"	c
ImplItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ImplItem {$/;"	c
ImplItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ImplItem {$/;"	c
ImplItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ImplItem {$/;"	c	module:parsing
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ImplItemConst {$/;"	c
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ImplItemConst {$/;"	c	method:ImplItemConst::fmt
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ImplItemConst {$/;"	c
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ImplItemConst {}$/;"	c
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ImplItemConst {$/;"	c
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ImplItemConst {$/;"	c
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ImplItemConst {$/;"	c	module:parsing
ImplItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ImplItemConst {$/;"	c	module:printing
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ImplItemFn {$/;"	c
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ImplItemFn {$/;"	c	method:ImplItemFn::fmt
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ImplItemFn {$/;"	c
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ImplItemFn {}$/;"	c
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ImplItemFn {$/;"	c
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ImplItemFn {$/;"	c
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ImplItemFn {$/;"	c	module:parsing
ImplItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ImplItemFn {$/;"	c	module:printing
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ImplItemMacro {$/;"	c
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ImplItemMacro {$/;"	c	method:ImplItemMacro::fmt
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ImplItemMacro {$/;"	c
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ImplItemMacro {}$/;"	c
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ImplItemMacro {$/;"	c
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ImplItemMacro {$/;"	c
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ImplItemMacro {$/;"	c	module:parsing
ImplItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ImplItemMacro {$/;"	c	module:printing
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ImplItemType {$/;"	c
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ImplItemType {$/;"	c	method:ImplItemType::fmt
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ImplItemType {$/;"	c
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ImplItemType {}$/;"	c
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ImplItemType {$/;"	c
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ImplItemType {$/;"	c
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ImplItemType {$/;"	c	module:parsing
ImplItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ImplItemType {$/;"	c	module:printing
ImplRestriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ImplRestriction {$/;"	c
ImplRestriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ImplRestriction {$/;"	c
ImplRestriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ImplRestriction {}$/;"	c
ImplRestriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ImplRestriction {$/;"	c
ImplRestriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ImplRestriction {$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for Index {$/;"	c	module:parsing
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for Index {$/;"	c	module:printing
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl Eq for Index {}$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl From<usize> for Index {$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl Hash for Index {$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl IdentFragment for Index {$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl PartialEq for Index {$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Index {$/;"	c
Index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Index {$/;"	c
Inflector	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^pub trait Inflector {$/;"	i
InflectorNumbers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^pub trait InflectorNumbers {$/;"	i
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    type IntoIter = TokenTreeIter;$/;"	t	implementation:TokenStream
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        type IntoIter = IntoIter;$/;"	t	implementation:token_stream::TokenStream
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    impl Debug for IntoIter {$/;"	c	module:token_stream
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    impl Iterator for IntoIter {$/;"	c	module:token_stream
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub struct IntoIter {$/;"	s	module:token_stream
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    type IntoIter = RcVecIntoIter<T>;$/;"	t	implementation:RcVecBuilder
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    type IntoIter = TokenTreeIter;$/;"	t	implementation:TokenStream
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    type IntoIter = punctuated::IntoIter<Field>;$/;"	t	implementation:Fields
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    type IntoIter = punctuated::Iter<'a, Field>;$/;"	t	implementation:Fields
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    type IntoIter = punctuated::IterMut<'a, Field>;$/;"	t	implementation:Fields
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<'a, T> TrivialDrop for option::IntoIter<&'a T> {}$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<'a, T> TrivialDrop for option::IntoIter<&'a mut T> {}$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    type IntoIter = IntoIter;$/;"	t	implementation:Error
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    type IntoIter = Iter<'a>;$/;"	t	implementation:Error
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Iterator for IntoIter {$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^pub struct IntoIter {$/;"	s
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type IntoIter = IntoIter<T>;$/;"	t	implementation:Punctuated
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type IntoIter = Iter<'a, T>;$/;"	t	implementation:Punctuated
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type IntoIter = IterMut<'a, T>;$/;"	t	implementation:Punctuated
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T> Clone for IntoIter<T>$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T> DoubleEndedIterator for IntoIter<T> {$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T> ExactSizeIterator for IntoIter<T> {$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T> Iterator for IntoIter<T> {$/;"	c
IntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct IntoIter<T> {$/;"	s
IntoPairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Clone for IntoPairs<T, P>$/;"	c
IntoPairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> DoubleEndedIterator for IntoPairs<T, P> {$/;"	c
IntoPairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> ExactSizeIterator for IntoPairs<T, P> {$/;"	c
IntoPairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Iterator for IntoPairs<T, P> {$/;"	c
IntoPairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct IntoPairs<T, P> {$/;"	s
IntoSpans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^pub trait IntoSpans<S> {$/;"	i
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    type Item = TokenTree;$/;"	t	implementation:TokenStream
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        type Item = TokenTree;$/;"	t	implementation:token_stream::IntoIter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        type Item = TokenTree;$/;"	t	implementation:token_stream::TokenStream
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    type Item = T;$/;"	t	implementation:RcVecBuilder
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    type Item = T;$/;"	t	implementation:RcVecIntoIter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    type Item = TokenTree;$/;"	t	implementation:TokenStream
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    type Item = TokenTree;$/;"	t	implementation:TokenTreeIter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Item = TokenTree;$/;"	t	implementation:push_lifetime::Lifetime
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Item = TokenTree;$/;"	t	implementation:push_lifetime_spanned::Lifetime
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    type Item = T::Item;$/;"	t	implementation:RepInterp
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    type Item = &'a Field;$/;"	t	implementation:Fields
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    type Item = &'a mut Field;$/;"	t	implementation:Fields
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    type Item = Field;$/;"	t	implementation:Fields
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    type Item = Error;$/;"	t	implementation:Error
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    type Item = Error;$/;"	t	implementation:IntoIter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    type Item = Error;$/;"	t	implementation:Iter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Item {$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Item {$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Item {}$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Item {$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Item {$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^        type Item = T;$/;"	t	implementation:fold::Punctuated
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^        type Item = T;$/;"	t	implementation:fold::Vec
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^        type Item;$/;"	t	interface:fold::FoldHelper
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    type Item = &'a ConstParam;$/;"	t	implementation:ConstParams
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    type Item = &'a LifetimeParam;$/;"	t	implementation:Lifetimes
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    type Item = &'a TypeParam;$/;"	t	implementation:TypeParams
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    type Item = &'a mut ConstParam;$/;"	t	implementation:ConstParamsMut
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    type Item = &'a mut LifetimeParam;$/;"	t	implementation:LifetimesMut
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    type Item = &'a mut TypeParam;$/;"	t	implementation:TypeParamsMut
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for Item {$/;"	c	module:parsing
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl From<DeriveInput> for Item {$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl Item {$/;"	c
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = &'a T;$/;"	t	implementation:Iter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = &'a T;$/;"	t	implementation:PrivateIter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = &'a T;$/;"	t	implementation:Punctuated
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = &'a mut T;$/;"	t	implementation:IterMut
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = &'a mut T;$/;"	t	implementation:PrivateIterMut
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = &'a mut T;$/;"	t	implementation:Punctuated
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = Pair<&'a T, &'a P>;$/;"	t	implementation:Pairs
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = Pair<&'a mut T, &'a mut P>;$/;"	t	implementation:PairsMut
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = Pair<T, P>;$/;"	t	implementation:IntoPairs
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = T;$/;"	t	implementation:IntoIter
Item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Item = T;$/;"	t	implementation:Punctuated
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemConst {$/;"	c
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemConst {$/;"	c	method:ItemConst::fmt
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemConst {$/;"	c
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemConst {}$/;"	c
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemConst {$/;"	c
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemConst {$/;"	c
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemConst {$/;"	c	module:parsing
ItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemConst {$/;"	c	module:printing
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemEnum {$/;"	c
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemEnum {$/;"	c	method:ItemEnum::fmt
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemEnum {$/;"	c
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemEnum {}$/;"	c
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemEnum {$/;"	c
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemEnum {$/;"	c
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemEnum {$/;"	c	module:parsing
ItemEnum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemEnum {$/;"	c	module:printing
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemExternCrate {$/;"	c
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemExternCrate {$/;"	c	method:ItemExternCrate::fmt
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemExternCrate {$/;"	c
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemExternCrate {}$/;"	c
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemExternCrate {$/;"	c
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemExternCrate {$/;"	c
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemExternCrate {$/;"	c	module:parsing
ItemExternCrate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemExternCrate {$/;"	c	module:printing
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemFn {$/;"	c
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemFn {$/;"	c	method:ItemFn::fmt
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemFn {$/;"	c
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemFn {}$/;"	c
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemFn {$/;"	c
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemFn {$/;"	c
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemFn {$/;"	c	module:parsing
ItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemFn {$/;"	c	module:printing
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemForeignMod {$/;"	c
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemForeignMod {$/;"	c	method:ItemForeignMod::fmt
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemForeignMod {$/;"	c
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemForeignMod {}$/;"	c
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemForeignMod {$/;"	c
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemForeignMod {$/;"	c
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemForeignMod {$/;"	c	module:parsing
ItemForeignMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemForeignMod {$/;"	c	module:printing
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemImpl {$/;"	c
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemImpl {$/;"	c	method:ItemImpl::fmt
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemImpl {$/;"	c
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemImpl {}$/;"	c
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemImpl {$/;"	c
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemImpl {$/;"	c
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemImpl {$/;"	c	module:parsing
ItemImpl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemImpl {$/;"	c	module:printing
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemMacro {$/;"	c
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemMacro {$/;"	c	method:ItemMacro::fmt
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemMacro {$/;"	c
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemMacro {}$/;"	c
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemMacro {$/;"	c
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemMacro {$/;"	c
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemMacro {$/;"	c	module:parsing
ItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemMacro {$/;"	c	module:printing
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemMod {$/;"	c
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemMod {$/;"	c	method:ItemMod::fmt
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemMod {$/;"	c
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemMod {}$/;"	c
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemMod {$/;"	c
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemMod {$/;"	c
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemMod {$/;"	c	module:parsing
ItemMod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemMod {$/;"	c	module:printing
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemStatic {$/;"	c
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemStatic {$/;"	c	method:ItemStatic::fmt
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemStatic {$/;"	c
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemStatic {}$/;"	c
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemStatic {$/;"	c
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemStatic {$/;"	c
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemStatic {$/;"	c	module:parsing
ItemStatic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemStatic {$/;"	c	module:printing
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemStruct {$/;"	c
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemStruct {$/;"	c	method:ItemStruct::fmt
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemStruct {$/;"	c
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemStruct {}$/;"	c
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemStruct {$/;"	c
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemStruct {$/;"	c
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemStruct {$/;"	c	module:parsing
ItemStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemStruct {$/;"	c	module:printing
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemTrait {$/;"	c
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemTrait {$/;"	c	method:ItemTrait::fmt
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemTrait {$/;"	c
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemTrait {}$/;"	c
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemTrait {$/;"	c
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemTrait {$/;"	c
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemTrait {$/;"	c	module:parsing
ItemTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemTrait {$/;"	c	module:printing
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemTraitAlias {$/;"	c
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemTraitAlias {$/;"	c	method:ItemTraitAlias::fmt
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemTraitAlias {$/;"	c
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemTraitAlias {}$/;"	c
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemTraitAlias {$/;"	c
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemTraitAlias {$/;"	c
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemTraitAlias {$/;"	c	module:parsing
ItemTraitAlias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemTraitAlias {$/;"	c	module:printing
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemType {$/;"	c
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemType {$/;"	c	method:ItemType::fmt
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemType {$/;"	c
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemType {}$/;"	c
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemType {$/;"	c
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemType {$/;"	c
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemType {$/;"	c	module:parsing
ItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemType {$/;"	c	module:printing
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemUnion {$/;"	c
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemUnion {$/;"	c	method:ItemUnion::fmt
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemUnion {$/;"	c
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemUnion {}$/;"	c
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemUnion {$/;"	c
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemUnion {$/;"	c
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemUnion {$/;"	c	module:parsing
ItemUnion	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemUnion {$/;"	c	module:printing
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ItemUse {$/;"	c
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ItemUse {$/;"	c	method:ItemUse::fmt
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ItemUse {$/;"	c
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ItemUse {}$/;"	c
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ItemUse {$/;"	c
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ItemUse {$/;"	c
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for ItemUse {$/;"	c	module:parsing
ItemUse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for ItemUse {$/;"	c	module:printing
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Iter = T::Iter;$/;"	t	implementation:ext::RepInterp
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Iter = T::Iter;$/;"	t	implementation:ext::T
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Iter = btree_set::Iter<'q, T>;$/;"	t	implementation:ext::BTreeSet
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Iter = slice::Iter<'q, T>;$/;"	t	implementation:ext::T
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Iter = slice::Iter<'q, T>;$/;"	t	implementation:ext::Vec
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Iter: Iterator;$/;"	t	interface:ext::RepAsIteratorExt
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<'a, T> TrivialDrop for slice::Iter<'a, T> {}$/;"	c
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl<'a> Iterator for Iter<'a> {$/;"	c
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^pub struct Iter<'a> {$/;"	s
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> Clone for Iter<'a, T> {$/;"	c
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> DoubleEndedIterator for Iter<'a, T> {$/;"	c
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> ExactSizeIterator for Iter<'a, T> {$/;"	c
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> Iterator for Iter<'a, T> {$/;"	c
Iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct Iter<'a, T: 'a> {$/;"	s
IterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<'a, T> TrivialDrop for slice::IterMut<'a, T> {}$/;"	c
IterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> DoubleEndedIterator for IterMut<'a, T> {$/;"	c
IterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> ExactSizeIterator for IterMut<'a, T> {$/;"	c
IterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T> Iterator for IterMut<'a, T> {$/;"	c
IterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct IterMut<'a, T: 'a> {$/;"	s
IterMutTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^trait IterMutTrait<'a, T: 'a>:$/;"	i
IterTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^trait IterTrait<'a, T: 'a>: Iterator<Item = &'a T> + DoubleEndedIterator + ExactSizeIterator {$/;"	i
Joint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Joint,$/;"	e	enum:Spacing
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for Label {$/;"	c	module:parsing
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for Label {$/;"	c	module:printing
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Label {$/;"	c
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Label {$/;"	c
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Label {}$/;"	c
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Label {$/;"	c
Label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Label {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Display for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct LexError {$/;"	s
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Error for LexError {}$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct LexError {$/;"	s
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Display for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<fallback::LexError> for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<proc_macro::LexError> for LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl LexError {$/;"	c
LexError	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum LexError {$/;"	g
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'a> Iterator for Lifetime<'a> {$/;"	c	function:push_lifetime
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'a> Iterator for Lifetime<'a> {$/;"	c	function:push_lifetime_spanned
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    struct Lifetime<'a> {$/;"	s	function:push_lifetime
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    struct Lifetime<'a> {$/;"	s	function:push_lifetime_spanned
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl Lifetime {$/;"	c	method:Lifetime::fmt
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    impl Parse for Lifetime {$/;"	c	module:parsing
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    impl ToTokens for Lifetime {$/;"	c	module:printing
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl Clone for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl Display for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl Eq for Lifetime {}$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl Hash for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl Ord for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl PartialEq for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^impl PartialOrd for Lifetime {$/;"	c
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^pub fn Lifetime(marker: lookahead::TokenMarker) -> Lifetime {$/;"	f
Lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^pub struct Lifetime {$/;"	s
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for LifetimeParam {$/;"	c
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for LifetimeParam {$/;"	c
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LifetimeParam {}$/;"	c
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for LifetimeParam {$/;"	c
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for LifetimeParam {$/;"	c
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for LifetimeParam {$/;"	c	module:parsing
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for LifetimeParam {$/;"	c	module:printing
LifetimeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl LifetimeParam {$/;"	c
Lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> Iterator for Lifetimes<'a> {$/;"	c
Lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct Lifetimes<'a>(Iter<'a, GenericParam>);$/;"	s
LifetimesMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> Iterator for LifetimesMut<'a> {$/;"	c
LifetimesMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct LifetimesMut<'a>(IterMut<'a, GenericParam>);$/;"	s
LineColumn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^impl Ord for LineColumn {$/;"	c
LineColumn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^impl PartialOrd for LineColumn {$/;"	c
LineColumn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^pub struct LineColumn {$/;"	s
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Lit {$/;"	c
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Lit {$/;"	c
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Lit {}$/;"	c
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Lit {$/;"	c
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Lit {$/;"	c
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Lit {$/;"	c	module:value
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for Lit {$/;"	c	module:parsing
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^pub fn Lit(marker: lookahead::TokenMarker) -> Lit {$/;"	f
Lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        Lit(ExprLit),$/;"	e	enum:parsing::PatRangeBound
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for LitBool {$/;"	c
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitBool {}$/;"	c
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for LitBool {$/;"	c
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for LitBool {$/;"	c
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitBool {$/;"	c	method:debug_impls::LitBool::fmt
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitBool {$/;"	c	module:debug_impls
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitBool {$/;"	c	module:parsing
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitBool {$/;"	c	module:printing
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitBool {$/;"	c
LitBool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^pub fn LitBool(marker: lookahead::TokenMarker) -> LitBool {$/;"	f
LitByte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitByte {}$/;"	c
LitByte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitByte {$/;"	c	method:debug_impls::LitByte::fmt
LitByte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitByte {$/;"	c	module:debug_impls
LitByte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitByte {$/;"	c	module:parsing
LitByte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitByte {$/;"	c	module:printing
LitByte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitByte {$/;"	c
LitByteStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitByteStr {}$/;"	c
LitByteStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitByteStr {$/;"	c	method:debug_impls::LitByteStr::fmt
LitByteStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitByteStr {$/;"	c	module:debug_impls
LitByteStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitByteStr {$/;"	c	module:parsing
LitByteStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitByteStr {$/;"	c	module:printing
LitByteStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitByteStr {$/;"	c
LitChar	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitChar {}$/;"	c
LitChar	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitChar {$/;"	c	method:debug_impls::LitChar::fmt
LitChar	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitChar {$/;"	c	module:debug_impls
LitChar	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitChar {$/;"	c	module:parsing
LitChar	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitChar {$/;"	c	module:printing
LitChar	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitChar {$/;"	c
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitFloat {}$/;"	c
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitFloat {$/;"	c	method:debug_impls::LitFloat::fmt
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitFloat {$/;"	c	module:debug_impls
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitFloat {$/;"	c	module:parsing
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitFloat {$/;"	c	module:printing
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl Display for LitFloat {$/;"	c
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl From<Literal> for LitFloat {$/;"	c
LitFloat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitFloat {$/;"	c
LitFloatRepr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl Clone for LitFloatRepr {$/;"	c
LitFloatRepr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^struct LitFloatRepr {$/;"	s
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitInt {}$/;"	c
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitInt {$/;"	c	method:debug_impls::LitInt::fmt
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitInt {$/;"	c	module:debug_impls
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitInt {$/;"	c	module:parsing
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitInt {$/;"	c	module:printing
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl Display for LitInt {$/;"	c
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl From<Literal> for LitInt {$/;"	c
LitInt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitInt {$/;"	c
LitIntRepr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl Clone for LitIntRepr {$/;"	c
LitIntRepr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^struct LitIntRepr {$/;"	s
LitRepr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl Clone for LitRepr {$/;"	c
LitRepr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^struct LitRepr {$/;"	s
LitStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LitStr {}$/;"	c
LitStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^            impl LitStr {$/;"	c	method:debug_impls::LitStr::fmt
LitStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Debug for LitStr {$/;"	c	module:debug_impls
LitStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl Parse for LitStr {$/;"	c	module:parsing
LitStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    impl ToTokens for LitStr {$/;"	c	module:printing
LitStr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^impl LitStr {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Debug for Literal {$/;"	c	method:Literal::byte_string
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Display for Literal {$/;"	c	method:Literal::byte_string
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl FromStr for Literal {$/;"	c	method:Literal::byte_string
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct Literal {$/;"	s
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Literal(Literal),$/;"	e	enum:TokenTree
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl FromStr for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct Literal {$/;"	s
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Display for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<fallback::Literal> for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl FromStr for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum Literal {$/;"	g
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for Literal {$/;"	c
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    Literal(Literal),$/;"	e	enum:Entry
Literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Parse for Literal {$/;"	c
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Local {$/;"	c
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl Local {$/;"	c	method:Local::fmt
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Local {$/;"	c
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Local {}$/;"	c
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Local {$/;"	c
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Local {$/;"	c
Local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl ToTokens for Local {$/;"	c	module:printing
LocalInit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for LocalInit {$/;"	c
LocalInit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for LocalInit {$/;"	c
LocalInit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for LocalInit {}$/;"	c
LocalInit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for LocalInit {$/;"	c
LocalInit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for LocalInit {$/;"	c
Lookahead1	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^impl<'a> Lookahead1<'a> {$/;"	c
Lookahead1	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^pub struct Lookahead1<'a> {$/;"	s
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Macro {$/;"	c
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Macro {$/;"	c
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Macro {}$/;"	c
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Macro {$/;"	c
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Macro {$/;"	c
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^    impl Parse for Macro {$/;"	c	module:parsing
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^    impl ToTokens for Macro {$/;"	c	module:printing
Macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^impl Macro {$/;"	c
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for MacroDelimiter {$/;"	c
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for MacroDelimiter {$/;"	c
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for MacroDelimiter {}$/;"	c
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for MacroDelimiter {$/;"	c
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for MacroDelimiter {$/;"	c
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl MacroDelimiter {$/;"	c	module:parsing
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^    impl MacroDelimiter {$/;"	c	module:printing
MacroDelimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^impl MacroDelimiter {$/;"	c
Marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/marker.rs	/^pub(crate) type Marker = PhantomData<ProcMacroAutoTraits>;$/;"	t
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Member {$/;"	c	module:parsing
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for Member {$/;"	c	module:parsing
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for Member {$/;"	c	module:printing
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl Eq for Member {}$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl From<Ident> for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl From<Index> for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl From<usize> for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl Hash for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl IdentFragment for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^impl PartialEq for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Member {$/;"	c
Member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl Member {$/;"	c	module:parsing
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl Parse for Meta {$/;"	c	module:parsing
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^impl Meta {$/;"	c
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Meta {$/;"	c
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Meta {$/;"	c
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Meta {}$/;"	c
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Meta {$/;"	c
Meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Meta {$/;"	c
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl Parse for MetaList {$/;"	c	module:parsing
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl ToTokens for MetaList {$/;"	c	module:printing
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^impl MetaList {$/;"	c
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for MetaList {$/;"	c
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl MetaList {$/;"	c	method:MetaList::fmt
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for MetaList {$/;"	c
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for MetaList {}$/;"	c
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for MetaList {$/;"	c
MetaList	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for MetaList {$/;"	c
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl Parse for MetaNameValue {$/;"	c	module:parsing
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    impl ToTokens for MetaNameValue {$/;"	c	module:printing
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for MetaNameValue {$/;"	c
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl MetaNameValue {$/;"	c	method:MetaNameValue::fmt
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for MetaNameValue {$/;"	c
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for MetaNameValue {}$/;"	c
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for MetaNameValue {$/;"	c
MetaNameValue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for MetaNameValue {$/;"	c
Mssql	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    Mssql,$/;"	e	enum:DbType
MySql	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    MySql,$/;"	e	enum:DbType
NeedsDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^    impl Drop for NeedsDrop {$/;"	c	function:test_needs_drop
NeedsDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^    struct NeedsDrop;$/;"	s	function:test_needs_drop
NoDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<T: ?Sized> Deref for NoDrop<T> {$/;"	c
NoDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<T: ?Sized> DerefMut for NoDrop<T> {$/;"	c
NoDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^impl<T> NoDrop<T> {$/;"	c
NoDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^pub(crate) struct NoDrop<T: ?Sized>(ManuallyDrop<T>);$/;"	s
None	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    None,$/;"	e	enum:Delimiter
None	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    None,$/;"	e	enum:Unexpected
Nothing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Debug for Nothing {$/;"	c
Nothing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Eq for Nothing {}$/;"	c
Nothing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Hash for Nothing {$/;"	c
Nothing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Parse for Nothing {$/;"	c
Nothing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl PartialEq for Nothing {$/;"	c
Nothing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub struct Nothing;$/;"	s
Option	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl<T: ToTokens> ToTokens for Option<T> {$/;"	c
Option	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for Option<Label> {$/;"	c	module:parsing
Option	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for Option<BoundLifetimes> {$/;"	c	module:parsing
Option	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for Option<WhereClause> {$/;"	c	module:parsing
Option	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<T: Parse + Token> Parse for Option<T> {$/;"	c
Option	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for Option<Abi> {$/;"	c	module:parsing
Optional	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        Optional,$/;"	e	enum:parsing::TypeDefaultness
Or	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Or,$/;"	e	enum:parsing::Precedence
Output	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    type Output = HasIterator;$/;"	t	implementation:HasIterator
Output	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    type Output = HasIterator;$/;"	t	implementation:ThereIsNoIteratorInRepetition
Output	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    type Output = ThereIsNoIteratorInRepetition;$/;"	t	implementation:ThereIsNoIteratorInRepetition
Output	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    type Output = T;$/;"	t
Output	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    type Output;$/;"	t	interface:Parser
Output	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    type Output = T;$/;"	t	implementation:Punctuated
PResult	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^type PResult<'a, O> = Result<(Cursor<'a>, O), Reject>;$/;"	t
Pair	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    impl<T, P> ToTokens for Pair<T, P>$/;"	c	module:printing
Pair	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Clone for Pair<T, P>$/;"	c
Pair	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Copy for Pair<T, P>$/;"	c
Pair	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Pair<&T, &P> {$/;"	c
Pair	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Pair<T, P> {$/;"	c
Pair	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub enum Pair<T, P> {$/;"	g
Pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> Clone for Pairs<'a, T, P> {$/;"	c
Pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> DoubleEndedIterator for Pairs<'a, T, P> {$/;"	c
Pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> ExactSizeIterator for Pairs<'a, T, P> {$/;"	c
Pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> Iterator for Pairs<'a, T, P> {$/;"	c
Pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct Pairs<'a, T: 'a, P: 'a> {$/;"	s
PairsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> DoubleEndedIterator for PairsMut<'a, T, P> {$/;"	c
PairsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> ExactSizeIterator for PairsMut<'a, T, P> {$/;"	c
PairsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> Iterator for PairsMut<'a, T, P> {$/;"	c
PairsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct PairsMut<'a, T: 'a, P: 'a> {$/;"	s
PanicHook	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^    type PanicHook = dyn Fn(&PanicInfo) + Sync + Send + 'static;$/;"	t	function:initialize
Paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Token for Paren {$/;"	c
Parens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub struct Parens<'a> {$/;"	s
Parenthesis	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Parenthesis,$/;"	e	enum:Delimiter
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ParenthesizedGenericArguments {$/;"	c
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl ParenthesizedGenericArguments {$/;"	c	method:ParenthesizedGenericArguments::fmt
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ParenthesizedGenericArguments {$/;"	c
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ParenthesizedGenericArguments {}$/;"	c
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ParenthesizedGenericArguments {$/;"	c
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ParenthesizedGenericArguments {$/;"	c
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl Parse for ParenthesizedGenericArguments {$/;"	c	module:parsing
ParenthesizedGenericArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for ParenthesizedGenericArguments {$/;"	c	module:printing
Parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub trait Parse: Sized {$/;"	i
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^impl<'a> AnyDelimiter for ParseBuffer<'a> {$/;"	c
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^impl<'a> Speculative for ParseBuffer<'a> {$/;"	c
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'a> Debug for ParseBuffer<'a> {$/;"	c
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'a> Display for ParseBuffer<'a> {$/;"	c
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'a> Drop for ParseBuffer<'a> {$/;"	c
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'a> ParseBuffer<'a> {$/;"	c
ParseBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub struct ParseBuffer<'a> {$/;"	s
ParseNestedMeta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^impl<'a> ParseNestedMeta<'a> {$/;"	c
ParseNestedMeta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^pub struct ParseNestedMeta<'a> {$/;"	s
ParseQuote	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^pub trait ParseQuote: Sized {$/;"	i
ParseStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub type ParseStream<'a> = &'a ParseBuffer<'a>;$/;"	t
Parser	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub trait Parser: Sized {$/;"	i
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Pat {$/;"	c
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Pat {$/;"	c
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Pat {}$/;"	c
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Pat {$/;"	c
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Pat {$/;"	c
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^impl ParseQuote for Pat {$/;"	c
Pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl Pat {$/;"	c	module:parsing
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatIdent {$/;"	c
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatIdent {$/;"	c	method:PatIdent::fmt
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatIdent {$/;"	c
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatIdent {}$/;"	c
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatIdent {$/;"	c
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatIdent {$/;"	c
PatIdent	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatIdent {$/;"	c	module:printing
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatOr {$/;"	c
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatOr {$/;"	c	method:PatOr::fmt
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatOr {$/;"	c
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatOr {}$/;"	c
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatOr {$/;"	c
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatOr {$/;"	c
PatOr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatOr {$/;"	c	module:printing
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatParen {$/;"	c
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatParen {$/;"	c	method:PatParen::fmt
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatParen {$/;"	c
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatParen {}$/;"	c
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatParen {$/;"	c
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatParen {$/;"	c
PatParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatParen {$/;"	c	module:printing
PatRangeBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    enum PatRangeBound {$/;"	g	module:parsing
PatRangeBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl PatRangeBound {$/;"	c	module:parsing
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatReference {$/;"	c
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatReference {$/;"	c	method:PatReference::fmt
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatReference {$/;"	c
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatReference {}$/;"	c
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatReference {$/;"	c
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatReference {$/;"	c
PatReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatReference {$/;"	c	module:printing
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatRest {$/;"	c
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatRest {$/;"	c	method:PatRest::fmt
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatRest {$/;"	c
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatRest {}$/;"	c
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatRest {$/;"	c
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatRest {$/;"	c
PatRest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatRest {$/;"	c	module:printing
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatSlice {$/;"	c
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatSlice {$/;"	c	method:PatSlice::fmt
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatSlice {$/;"	c
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatSlice {}$/;"	c
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatSlice {$/;"	c
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatSlice {$/;"	c
PatSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatSlice {$/;"	c	module:printing
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatStruct {$/;"	c
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatStruct {$/;"	c	method:PatStruct::fmt
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatStruct {$/;"	c
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatStruct {}$/;"	c
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatStruct {$/;"	c
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatStruct {$/;"	c
PatStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatStruct {$/;"	c	module:printing
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatTuple {$/;"	c
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatTuple {$/;"	c	method:PatTuple::fmt
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatTuple {$/;"	c
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatTuple {}$/;"	c
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatTuple {$/;"	c
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatTuple {$/;"	c
PatTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatTuple {$/;"	c	module:printing
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatTupleStruct {$/;"	c
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatTupleStruct {$/;"	c	method:PatTupleStruct::fmt
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatTupleStruct {$/;"	c
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatTupleStruct {}$/;"	c
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatTupleStruct {$/;"	c
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatTupleStruct {$/;"	c
PatTupleStruct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatTupleStruct {$/;"	c	module:printing
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatType {$/;"	c
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatType {$/;"	c	method:PatType::fmt
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatType {$/;"	c
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatType {}$/;"	c
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatType {$/;"	c
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatType {$/;"	c
PatType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatType {$/;"	c	module:printing
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PatWild {$/;"	c
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl PatWild {$/;"	c	method:PatWild::fmt
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PatWild {$/;"	c
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PatWild {}$/;"	c
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PatWild {$/;"	c
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PatWild {$/;"	c
PatWild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    impl ToTokens for PatWild {$/;"	c	module:printing
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Path {$/;"	c
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl Path {$/;"	c	method:Path::fmt
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Path {$/;"	c
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Path {}$/;"	c
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Path {$/;"	c
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Path {$/;"	c
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        Path(ExprPath),$/;"	e	enum:parsing::PatRangeBound
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl Parse for Path {$/;"	c	module:parsing
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl Path {$/;"	c	module:parsing
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for Path {$/;"	c	module:printing
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^impl Path {$/;"	c
Path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^impl<T> From<T> for Path$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PathArguments {$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PathArguments {$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PathArguments {}$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PathArguments {$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PathArguments {$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for PathArguments {$/;"	c	module:printing
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^impl Default for PathArguments {$/;"	c
PathArguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^impl PathArguments {$/;"	c
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PathSegment {$/;"	c
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PathSegment {$/;"	c
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PathSegment {}$/;"	c
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PathSegment {$/;"	c
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PathSegment {$/;"	c
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl Parse for PathSegment {$/;"	c	module:parsing
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl PathSegment {$/;"	c	module:parsing
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    impl ToTokens for PathSegment {$/;"	c	module:printing
PathSegment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^impl<T> From<T> for PathSegment$/;"	c
Peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^pub trait Peek: Sealed {$/;"	i
PeekFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    impl Clone for PeekFn {$/;"	c	module:private
PeekFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    impl Copy for PeekFn {}$/;"	c	module:private
PeekFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    pub struct PeekFn;$/;"	s	module:private
PeekFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^impl Peek for private::PeekFn {$/;"	c
PeekFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^impl lookahead::Sealed for private::PeekFn {}$/;"	c
Postgres	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    Postgres,$/;"	e	enum:DbType
Precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    enum Precedence {$/;"	g	module:parsing
Precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Clone for Precedence {$/;"	c	module:parsing
Precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Copy for Precedence {}$/;"	c	module:parsing
Precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl PartialEq for Precedence {$/;"	c	module:parsing
Precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl PartialOrd for Precedence {$/;"	c	module:parsing
Precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Precedence {$/;"	c	module:parsing
PredicateLifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PredicateLifetime {$/;"	c
PredicateLifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PredicateLifetime {$/;"	c
PredicateLifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PredicateLifetime {}$/;"	c
PredicateLifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PredicateLifetime {$/;"	c
PredicateLifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PredicateLifetime {$/;"	c
PredicateLifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for PredicateLifetime {$/;"	c	module:printing
PredicateType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for PredicateType {$/;"	c
PredicateType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for PredicateType {$/;"	c
PredicateType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for PredicateType {}$/;"	c
PredicateType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for PredicateType {$/;"	c
PredicateType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for PredicateType {$/;"	c
PredicateType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for PredicateType {$/;"	c	module:printing
PrivateIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> Clone for PrivateIter<'a, T, P> {$/;"	c
PrivateIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> DoubleEndedIterator for PrivateIter<'a, T, P> {$/;"	c
PrivateIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> ExactSizeIterator for PrivateIter<'a, T, P> {$/;"	c
PrivateIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> Iterator for PrivateIter<'a, T, P> {$/;"	c
PrivateIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> TrivialDrop for PrivateIter<'a, T, P>$/;"	c
PrivateIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^struct PrivateIter<'a, T: 'a, P: 'a> {$/;"	s
PrivateIterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> DoubleEndedIterator for PrivateIterMut<'a, T, P> {$/;"	c
PrivateIterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> ExactSizeIterator for PrivateIterMut<'a, T, P> {$/;"	c
PrivateIterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> Iterator for PrivateIterMut<'a, T, P> {$/;"	c
PrivateIterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> TrivialDrop for PrivateIterMut<'a, T, P>$/;"	c
PrivateIterMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^struct PrivateIterMut<'a, T: 'a, P: 'a> {$/;"	s
ProcMacroAutoTraits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/marker.rs	/^impl RefUnwindSafe for ProcMacroAutoTraits {}$/;"	c
ProcMacroAutoTraits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/marker.rs	/^impl UnwindSafe for ProcMacroAutoTraits {}$/;"	c
ProcMacroAutoTraits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/marker.rs	/^pub(crate) struct ProcMacroAutoTraits(Rc<()>);$/;"	s
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    Punct(Punct),$/;"	e	enum:TokenTree
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for Punct {$/;"	c
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for Punct {$/;"	c
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Punct {$/;"	c
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct Punct {$/;"	s
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for Punct {$/;"	c
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    Punct(Punct),$/;"	e	enum:Entry
Punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Parse for Punct {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^    impl<T, U> FoldHelper for Punctuated<T, U> {$/;"	c	module:fold
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^impl<T: Parse, P: Parse> ParseQuote for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    Punctuated(T, P),$/;"	e	enum:Pair
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    impl<T, P> ToTokens for Punctuated<T, P>$/;"	c	module:printing
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> IntoIterator for &'a Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<'a, T, P> IntoIterator for &'a mut Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Clone for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Default for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Eq for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Extend<Pair<T, P>> for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Extend<T> for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> FromIterator<Pair<T, P>> for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> FromIterator<T> for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Hash for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Index<usize> for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> IndexMut<usize> for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> IntoIterator for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> PartialEq for Punctuated<T, P>$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T, P> Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^impl<T: Debug, P: Debug> Debug for Punctuated<T, P> {$/;"	c
Punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub struct Punctuated<T, P> {$/;"	s
QSelf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for QSelf {$/;"	c
QSelf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for QSelf {$/;"	c
QSelf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for QSelf {}$/;"	c
QSelf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for QSelf {$/;"	c
QSelf	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for QSelf {$/;"	c
Range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Range,$/;"	e	enum:parsing::Precedence
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl Parse for RangeLimits {$/;"	c	module:parsing
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl RangeLimits {$/;"	c	module:parsing
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    impl ToTokens for RangeLimits {$/;"	c	module:printing
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for RangeLimits {$/;"	c
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Copy for RangeLimits {}$/;"	c
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for RangeLimits {$/;"	c
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for RangeLimits {}$/;"	c
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for RangeLimits {$/;"	c
RangeLimits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for RangeLimits {$/;"	c
Rc	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl<T: ?Sized + ToTokens> ToTokens for Rc<T> {$/;"	c
RcVec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<T> Clone for RcVec<T> {$/;"	c
RcVec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<T> RcVec<T> {$/;"	c
RcVec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<T> RefUnwindSafe for RcVec<T> where T: RefUnwindSafe {}$/;"	c
RcVec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^pub(crate) struct RcVec<T> {$/;"	s
RcVecBuilder	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<T> IntoIterator for RcVecBuilder<T> {$/;"	c
RcVecBuilder	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<T> RcVecBuilder<T> {$/;"	c
RcVecBuilder	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^pub(crate) struct RcVecBuilder<T> {$/;"	s
RcVecIntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<T> Iterator for RcVecIntoIter<T> {$/;"	c
RcVecIntoIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^pub(crate) struct RcVecIntoIter<T> {$/;"	s
RcVecMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^impl<'a, T> RcVecMut<'a, T> {$/;"	c
RcVecMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^pub(crate) struct RcVecMut<'a, T> {$/;"	s
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Receiver {$/;"	c
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Receiver {$/;"	c
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Receiver {}$/;"	c
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Receiver {$/;"	c
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Receiver {$/;"	c
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for Receiver {$/;"	c	module:parsing
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for Receiver {$/;"	c	module:printing
Receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl Receiver {$/;"	c
Reject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^pub(crate) struct Reject;$/;"	s
RepAsIteratorExt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub trait RepAsIteratorExt<'q> {$/;"	i	module:ext
RepInterp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'q, T: RepAsIteratorExt<'q>> RepAsIteratorExt<'q> for RepInterp<T> {$/;"	c	module:ext
RepInterp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: Iterator> Iterator for RepInterp<T> {$/;"	c
RepInterp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T: ToTokens> ToTokens for RepInterp<T> {$/;"	c
RepInterp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl<T> RepInterp<T> {$/;"	c
RepInterp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub struct RepInterp<T>(pub T);$/;"	s
RepIteratorExt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub trait RepIteratorExt: Iterator + Sized {$/;"	i	module:ext
RepToTokensExt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub trait RepToTokensExt {$/;"	i	module:ext
Result	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^pub type Result<T> = std::result::Result<T, Error>;$/;"	t
Ret	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    type Ret = iter::Filter<slice::Iter<'a, Attribute>, fn(&&Attribute) -> bool>;$/;"	t	implementation:Attribute
Ret	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    type Ret: Iterator<Item = &'a Attribute>;$/;"	t	interface:FilterAttrs
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for ReturnType {$/;"	c
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for ReturnType {$/;"	c
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for ReturnType {}$/;"	c
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for ReturnType {$/;"	c
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for ReturnType {$/;"	c
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for ReturnType {$/;"	c	module:parsing
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ReturnType {$/;"	c	module:parsing
ReturnType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for ReturnType {$/;"	c	module:printing
Sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    pub trait Sealed {}$/;"	i	module:private
Sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    pub trait Sealed {}$/;"	i	module:private
Sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    pub trait Sealed {}$/;"	i	module:private
Sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/sealed.rs	/^    pub trait Sealed: Copy {}$/;"	i	module:lookahead
Sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^    pub trait Sealed {}$/;"	i	module:private
Sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub trait Sealed {}$/;"	i	module:private
Shift	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Shift,$/;"	e	enum:parsing::Precedence
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Signature {$/;"	c
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Signature {$/;"	c
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Signature {}$/;"	c
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Signature {$/;"	c
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Signature {$/;"	c
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for Signature {$/;"	c	module:parsing
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for Signature {$/;"	c	module:printing
Signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^impl Signature {$/;"	c
Some	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    Some(Span),$/;"	e	enum:Unexpected
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Debug for SourceFile {$/;"	c
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl SourceFile {$/;"	c
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct SourceFile {$/;"	s
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for SourceFile {$/;"	c
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl SourceFile {$/;"	c
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct SourceFile {$/;"	s
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for SourceFile {$/;"	c
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl SourceFile {$/;"	c
SourceFile	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum SourceFile {$/;"	g
SourceMap	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl SourceMap {$/;"	c
SourceMap	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^struct SourceMap {$/;"	s
Spacing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub enum Spacing {$/;"	g
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Debug for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct Span {$/;"	s
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct Span {$/;"	s
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<fallback::Span> for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<proc_macro::Span> for crate::Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum Span {$/;"	g
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    impl Sealed for Span {}$/;"	c	module:private
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^impl Spanned for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<DelimSpan> for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<Span> for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<[Span; 1]> for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<[Span; 1]> for [Span; 1] {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<[Span; 2]> for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<[Span; 2]> for [Span; 2] {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<[Span; 3]> for Span {$/;"	c
Span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^impl IntoSpans<[Span; 3]> for [Span; 3] {$/;"	c
SpanRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Clone for SpanRange {$/;"	c
SpanRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^impl Copy for SpanRange {}$/;"	c
SpanRange	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^struct SpanRange {$/;"	s
Spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^pub trait Spanned: private::Sealed {$/;"	i
Spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^pub trait Spanned: private::Sealed {$/;"	i
Speculative	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^pub trait Speculative {$/;"	i
Sqlite	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    Sqlite,$/;"	e	enum:DbType
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for StaticMutability {$/;"	c
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for StaticMutability {$/;"	c
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for StaticMutability {}$/;"	c
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for StaticMutability {$/;"	c
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for StaticMutability {$/;"	c
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for StaticMutability {$/;"	c	module:parsing
StaticMutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for StaticMutability {$/;"	c	module:printing
StepCursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'c, 'a> Clone for StepCursor<'c, 'a> {$/;"	c
StepCursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'c, 'a> Copy for StepCursor<'c, 'a> {}$/;"	c
StepCursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'c, 'a> Deref for StepCursor<'c, 'a> {$/;"	c
StepCursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl<'c, 'a> StepCursor<'c, 'a> {$/;"	c
StepCursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub struct StepCursor<'c, 'a> {$/;"	s
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Stmt {$/;"	c
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Stmt {$/;"	c
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Stmt {}$/;"	c
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Stmt {$/;"	c
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Stmt {$/;"	c
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl Parse for Stmt {$/;"	c	module:parsing
Stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl ToTokens for Stmt {$/;"	c	module:printing
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for StmtMacro {$/;"	c
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl StmtMacro {$/;"	c	method:StmtMacro::fmt
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for StmtMacro {$/;"	c
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for StmtMacro {}$/;"	c
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for StmtMacro {$/;"	c
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for StmtMacro {$/;"	c
StmtMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    impl ToTokens for StmtMacro {$/;"	c	module:printing
Str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/export.rs	/^    pub type Str = str;$/;"	t	module:help
String	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for String {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^impl<T: IdentFragment + ?Sized> IdentFragment for &T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^impl<T: IdentFragment + ?Sized> IdentFragment for &mut T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'q, 'a, T: RepAsIteratorExt<'q> + ?Sized> RepAsIteratorExt<'q> for &'a T {$/;"	c	module:ext
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'q, 'a, T: RepAsIteratorExt<'q> + ?Sized> RepAsIteratorExt<'q> for &'a mut T {$/;"	c	module:ext
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'q, T: 'q> RepAsIteratorExt<'q> for [T] {$/;"	c	module:ext
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<T: Iterator> RepIteratorExt for T {}$/;"	c	module:ext
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<T: ToTokens + ?Sized> RepToTokensExt for T {}$/;"	c	module:ext
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    impl<T: ?Sized + ToTokens> Sealed for T {}$/;"	c	module:private
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^impl<T: ?Sized + ToTokens> Spanned for T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl<'a, T: ?Sized + ToTokens> ToTokens for &'a T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl<'a, T: ?Sized + ToTokens> ToTokens for &'a mut T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^impl<T: Parse> ParseQuote for T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^    impl<T: ?Sized + ToTokens> Sealed for T {}$/;"	c	module:private
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^impl<T: ?Sized + ToTokens> Spanned for T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl<T: CustomToken> Token for T {$/;"	c
T	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl<T: CustomToken> private::Sealed for T {}$/;"	c
Target	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Target = GetSpanBase<T>;$/;"	t	implementation:get_span::GetSpanInner
Target	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        type Target = GetSpanInner<T>;$/;"	t	implementation:get_span::GetSpan
Target	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^    type Target = T;$/;"	t	implementation:NoDrop
Target	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    type Target = Cursor<'c>;$/;"	t	implementation:StepCursor
Term	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        Term,$/;"	e	enum:parsing::Precedence
ThereIsNoIteratorInRepetition	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl BitOr<HasIterator> for ThereIsNoIteratorInRepetition {$/;"	c
ThereIsNoIteratorInRepetition	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^impl BitOr<ThereIsNoIteratorInRepetition> for ThereIsNoIteratorInRepetition {$/;"	c
ThereIsNoIteratorInRepetition	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub struct ThereIsNoIteratorInRepetition; \/\/ False$/;"	s
ThreadBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^impl<T: Clone> Clone for ThreadBound<T> {$/;"	c
ThreadBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^impl<T: Debug> Debug for ThreadBound<T> {$/;"	c
ThreadBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^impl<T> ThreadBound<T> {$/;"	c
ThreadBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^pub(crate) struct ThreadBound<T> {$/;"	s
ThreadBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^unsafe impl<T: Copy> Send for ThreadBound<T> {}$/;"	c
ThreadBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^unsafe impl<T> Sync for ThreadBound<T> {}$/;"	c
ToTokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^pub trait ToTokens {$/;"	i
Token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    type Token = private::IdentAny;$/;"	t	implementation:PeekFn
Token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    type Token = T;$/;"	t	implementation:F
Token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    type Token: Token;$/;"	t	interface:Peek
Token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! Token {$/;"	M
Token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^pub trait Token: private::Sealed {$/;"	i
TokenBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^impl TokenBuffer {$/;"	c
TokenBuffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub struct TokenBuffer {$/;"	s
TokenMarker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^impl<S> IntoSpans<S> for TokenMarker {$/;"	c
TokenMarker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^pub enum TokenMarker {}$/;"	g
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Debug for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Display for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Drop for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Extend<TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl Extend<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl From<TokenStream> for proc_macro::TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl From<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl From<proc_macro::TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl FromIterator<TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl FromIterator<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl FromStr for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl IntoIterator for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct TokenStream {$/;"	s
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    impl IntoIterator for TokenStream {$/;"	c	module:token_stream
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Default for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Extend<TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Extend<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<TokenStream> for proc_macro::TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<proc_macro::TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl FromIterator<TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl FromIterator<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl FromStr for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub struct TokenStream {$/;"	s
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Debug for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Display for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Extend<TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Extend<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<TokenStream> for proc_macro::TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<fallback::TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl From<proc_macro::TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl FromIterator<TokenStream> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl FromIterator<TokenTree> for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl FromStr for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl IntoIterator for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum TokenStream {$/;"	g
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    impl Sealed for TokenStream {}$/;"	c	module:private
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^impl TokenStreamExt for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for TokenStream {$/;"	c
TokenStream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Parse for TokenStream {$/;"	c
TokenStreamBuilder	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^impl TokenStreamBuilder {$/;"	c
TokenStreamBuilder	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) struct TokenStreamBuilder {$/;"	s
TokenStreamExt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^pub trait TokenStreamExt: private::Sealed {$/;"	i
TokenStreamHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^impl<'a> Hash for TokenStreamHelper<'a> {$/;"	c
TokenStreamHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^impl<'a> PartialEq for TokenStreamHelper<'a> {$/;"	c
TokenStreamHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^pub(crate) struct TokenStreamHelper<'a>(pub &'a TokenStream);$/;"	s
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Debug for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl Display for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<Group> for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<Ident> for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<Literal> for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl From<Punct> for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^impl TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub enum TokenTree {$/;"	g
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for TokenTree {$/;"	c
TokenTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Parse for TokenTree {$/;"	c
TokenTreeHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^impl<'a> Hash for TokenTreeHelper<'a> {$/;"	c
TokenTreeHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^impl<'a> PartialEq for TokenTreeHelper<'a> {$/;"	c
TokenTreeHelper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^pub(crate) struct TokenTreeHelper<'a>(pub &'a TokenTree);$/;"	s
TokenTreeIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) type TokenTreeIter = RcVecIntoIter<TokenTree>;$/;"	t
TokenTreeIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^impl Iterator for TokenTreeIter {$/;"	c
TokenTreeIter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) enum TokenTreeIter {$/;"	g
TokensOrDefault	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/print.rs	/^impl<'a, T> ToTokens for TokensOrDefault<'a, T>$/;"	c
TokensOrDefault	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/print.rs	/^pub(crate) struct TokensOrDefault<'a, T: 'a>(pub &'a Option<T>);$/;"	s
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitBound {$/;"	c
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitBound {$/;"	c
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitBound {}$/;"	c
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitBound {$/;"	c
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitBound {$/;"	c
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for TraitBound {$/;"	c	module:parsing
TraitBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for TraitBound {$/;"	c	module:printing
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitBoundModifier {$/;"	c
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Copy for TraitBoundModifier {}$/;"	c
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitBoundModifier {$/;"	c
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitBoundModifier {}$/;"	c
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitBoundModifier {$/;"	c
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitBoundModifier {$/;"	c
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for TraitBoundModifier {$/;"	c	module:parsing
TraitBoundModifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for TraitBoundModifier {$/;"	c	module:printing
TraitItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitItem {$/;"	c
TraitItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitItem {$/;"	c
TraitItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitItem {}$/;"	c
TraitItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitItem {$/;"	c
TraitItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitItem {$/;"	c
TraitItem	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for TraitItem {$/;"	c	module:parsing
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitItemConst {$/;"	c
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TraitItemConst {$/;"	c	method:TraitItemConst::fmt
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitItemConst {$/;"	c
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitItemConst {}$/;"	c
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitItemConst {$/;"	c
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitItemConst {$/;"	c
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for TraitItemConst {$/;"	c	module:parsing
TraitItemConst	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for TraitItemConst {$/;"	c	module:printing
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitItemFn {$/;"	c
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TraitItemFn {$/;"	c	method:TraitItemFn::fmt
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitItemFn {$/;"	c
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitItemFn {}$/;"	c
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitItemFn {$/;"	c
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitItemFn {$/;"	c
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for TraitItemFn {$/;"	c	module:parsing
TraitItemFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for TraitItemFn {$/;"	c	module:printing
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitItemMacro {$/;"	c
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TraitItemMacro {$/;"	c	method:TraitItemMacro::fmt
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitItemMacro {$/;"	c
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitItemMacro {}$/;"	c
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitItemMacro {$/;"	c
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitItemMacro {$/;"	c
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for TraitItemMacro {$/;"	c	module:parsing
TraitItemMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for TraitItemMacro {$/;"	c	module:printing
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TraitItemType {$/;"	c
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TraitItemType {$/;"	c	method:TraitItemType::fmt
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TraitItemType {$/;"	c
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TraitItemType {}$/;"	c
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TraitItemType {$/;"	c
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TraitItemType {$/;"	c
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for TraitItemType {$/;"	c	module:parsing
TraitItemType	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for TraitItemType {$/;"	c	module:printing
TrivialDrop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^pub(crate) trait TrivialDrop {}$/;"	i
Turbofish	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl<'a> ToTokens for Turbofish<'a> {$/;"	c	module:printing
Turbofish	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct Turbofish<'a>(&'a Generics);$/;"	s
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Type {$/;"	c
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Type {$/;"	c
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Type {}$/;"	c
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Type {$/;"	c
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Type {$/;"	c
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for Type {$/;"	c	module:parsing
Type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Type {$/;"	c	module:parsing
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeArray {$/;"	c
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeArray {$/;"	c	method:TypeArray::fmt
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeArray {$/;"	c
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeArray {}$/;"	c
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeArray {$/;"	c
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeArray {$/;"	c
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeArray {$/;"	c	module:parsing
TypeArray	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeArray {$/;"	c	module:printing
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeBareFn {$/;"	c
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeBareFn {$/;"	c	method:TypeBareFn::fmt
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeBareFn {$/;"	c
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeBareFn {}$/;"	c
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeBareFn {$/;"	c
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeBareFn {$/;"	c
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeBareFn {$/;"	c	module:parsing
TypeBareFn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeBareFn {$/;"	c	module:printing
TypeDefaultness	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    enum TypeDefaultness {$/;"	g	module:parsing
TypeGenerics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl<'a> ToTokens for TypeGenerics<'a> {$/;"	c	module:printing
TypeGenerics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> TypeGenerics<'a> {$/;"	c
TypeGenerics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct TypeGenerics<'a>(&'a Generics);$/;"	s
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeGroup {$/;"	c
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeGroup {$/;"	c	method:TypeGroup::fmt
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeGroup {$/;"	c
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeGroup {}$/;"	c
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeGroup {$/;"	c
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeGroup {$/;"	c
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeGroup {$/;"	c	module:parsing
TypeGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeGroup {$/;"	c	module:printing
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeImplTrait {$/;"	c
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeImplTrait {$/;"	c	method:TypeImplTrait::fmt
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeImplTrait {$/;"	c
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeImplTrait {}$/;"	c
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeImplTrait {$/;"	c
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeImplTrait {$/;"	c
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeImplTrait {$/;"	c	module:parsing
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeImplTrait {$/;"	c	module:printing
TypeImplTrait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl TypeImplTrait {$/;"	c	module:parsing
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeInfer {$/;"	c
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeInfer {$/;"	c	method:TypeInfer::fmt
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeInfer {$/;"	c
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeInfer {}$/;"	c
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeInfer {$/;"	c
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeInfer {$/;"	c
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeInfer {$/;"	c	module:parsing
TypeInfer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeInfer {$/;"	c	module:printing
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeMacro {$/;"	c
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeMacro {$/;"	c	method:TypeMacro::fmt
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeMacro {$/;"	c
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeMacro {}$/;"	c
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeMacro {$/;"	c
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeMacro {$/;"	c
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeMacro {$/;"	c	module:parsing
TypeMacro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeMacro {$/;"	c	module:printing
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeNever {$/;"	c
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeNever {$/;"	c	method:TypeNever::fmt
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeNever {$/;"	c
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeNever {}$/;"	c
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeNever {$/;"	c
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeNever {$/;"	c
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeNever {$/;"	c	module:parsing
TypeNever	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeNever {$/;"	c	module:printing
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeParam {$/;"	c
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeParam {$/;"	c
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeParam {}$/;"	c
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeParam {$/;"	c
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeParam {$/;"	c
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for TypeParam {$/;"	c	module:parsing
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for TypeParam {$/;"	c	module:printing
TypeParam	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl From<Ident> for TypeParam {$/;"	c
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeParamBound {$/;"	c
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeParamBound {$/;"	c
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeParamBound {}$/;"	c
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeParamBound {$/;"	c
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeParamBound {$/;"	c
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for TypeParamBound {$/;"	c	module:parsing
TypeParamBound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl TypeParamBound {$/;"	c	module:parsing
TypeParams	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> Iterator for TypeParams<'a> {$/;"	c
TypeParams	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct TypeParams<'a>(Iter<'a, GenericParam>);$/;"	s
TypeParamsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^impl<'a> Iterator for TypeParamsMut<'a> {$/;"	c
TypeParamsMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub struct TypeParamsMut<'a>(IterMut<'a, GenericParam>);$/;"	s
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeParen {$/;"	c
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeParen {$/;"	c	method:TypeParen::fmt
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeParen {$/;"	c
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeParen {}$/;"	c
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeParen {$/;"	c
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeParen {$/;"	c
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeParen {$/;"	c	module:parsing
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeParen {$/;"	c	module:printing
TypeParen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl TypeParen {$/;"	c	module:parsing
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypePath {$/;"	c
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypePath {$/;"	c	method:TypePath::fmt
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypePath {$/;"	c
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypePath {}$/;"	c
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypePath {$/;"	c
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypePath {$/;"	c
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypePath {$/;"	c	module:parsing
TypePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypePath {$/;"	c	module:printing
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypePtr {$/;"	c
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypePtr {$/;"	c	method:TypePtr::fmt
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypePtr {$/;"	c
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypePtr {}$/;"	c
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypePtr {$/;"	c
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypePtr {$/;"	c
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypePtr {$/;"	c	module:parsing
TypePtr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypePtr {$/;"	c	module:printing
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeReference {$/;"	c
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeReference {$/;"	c	method:TypeReference::fmt
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeReference {$/;"	c
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeReference {}$/;"	c
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeReference {$/;"	c
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeReference {$/;"	c
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeReference {$/;"	c	module:parsing
TypeReference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeReference {$/;"	c	module:printing
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeSlice {$/;"	c
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeSlice {$/;"	c	method:TypeSlice::fmt
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeSlice {$/;"	c
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeSlice {}$/;"	c
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeSlice {$/;"	c
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeSlice {$/;"	c
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeSlice {$/;"	c	module:parsing
TypeSlice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeSlice {$/;"	c	module:printing
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeTraitObject {$/;"	c
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeTraitObject {$/;"	c	method:TypeTraitObject::fmt
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeTraitObject {$/;"	c
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeTraitObject {}$/;"	c
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeTraitObject {$/;"	c
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeTraitObject {$/;"	c
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeTraitObject {$/;"	c	module:parsing
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeTraitObject {$/;"	c	module:printing
TypeTraitObject	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl TypeTraitObject {$/;"	c	module:parsing
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for TypeTuple {$/;"	c
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl TypeTuple {$/;"	c	method:TypeTuple::fmt
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for TypeTuple {$/;"	c
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for TypeTuple {}$/;"	c
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for TypeTuple {$/;"	c
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for TypeTuple {$/;"	c
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl Parse for TypeTuple {$/;"	c	module:parsing
TypeTuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    impl ToTokens for TypeTuple {$/;"	c	module:printing
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UnOp {$/;"	c
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Copy for UnOp {}$/;"	c
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UnOp {$/;"	c
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UnOp {}$/;"	c
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UnOp {$/;"	c
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UnOp {$/;"	c
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^    impl Parse for UnOp {$/;"	c	module:parsing
UnOp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^    impl ToTokens for UnOp {$/;"	c	module:printing
Underscore	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Parse for Underscore {$/;"	c
Underscore	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl ToTokens for Underscore {$/;"	c
Underscore	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl Token for Underscore {$/;"	c
Underscore	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^impl private::Sealed for Underscore {}$/;"	c
Unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Clone for Unexpected {$/;"	c
Unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^impl Default for Unexpected {$/;"	c
Unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub(crate) enum Unexpected {$/;"	g
UnsafeSyncEntry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^        struct UnsafeSyncEntry(Entry);$/;"	s	method:Cursor::empty
UnsafeSyncEntry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^        unsafe impl Sync for UnsafeSyncEntry {}$/;"	c	method:Cursor::empty
UseGlob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UseGlob {$/;"	c
UseGlob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UseGlob {$/;"	c
UseGlob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UseGlob {}$/;"	c
UseGlob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UseGlob {$/;"	c
UseGlob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UseGlob {$/;"	c
UseGlob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for UseGlob {$/;"	c	module:printing
UseGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UseGroup {$/;"	c
UseGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UseGroup {$/;"	c
UseGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UseGroup {}$/;"	c
UseGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UseGroup {$/;"	c
UseGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UseGroup {$/;"	c
UseGroup	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for UseGroup {$/;"	c	module:printing
UseName	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UseName {$/;"	c
UseName	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UseName {$/;"	c
UseName	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UseName {}$/;"	c
UseName	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UseName {$/;"	c
UseName	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UseName {$/;"	c
UseName	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for UseName {$/;"	c	module:printing
UsePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UsePath {$/;"	c
UsePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UsePath {$/;"	c
UsePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UsePath {}$/;"	c
UsePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UsePath {$/;"	c
UsePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UsePath {$/;"	c
UsePath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for UsePath {$/;"	c	module:printing
UseRename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UseRename {$/;"	c
UseRename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UseRename {$/;"	c
UseRename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UseRename {}$/;"	c
UseRename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UseRename {$/;"	c
UseRename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UseRename {$/;"	c
UseRename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for UseRename {$/;"	c	module:printing
UseTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for UseTree {$/;"	c
UseTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for UseTree {$/;"	c
UseTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for UseTree {}$/;"	c
UseTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for UseTree {$/;"	c
UseTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for UseTree {$/;"	c
UseTree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Parse for UseTree {$/;"	c	module:parsing
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Variadic {$/;"	c
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Variadic {$/;"	c
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Variadic {}$/;"	c
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Variadic {$/;"	c
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Variadic {$/;"	c
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        Variadic(Variadic),$/;"	e	enum:parsing::FnArgOrVariadic
Variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl ToTokens for Variadic {$/;"	c	module:printing
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl Parse for Variant {$/;"	c	module:parsing
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    impl ToTokens for Variant {$/;"	c	module:printing
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Variant {$/;"	c
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Variant {$/;"	c
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Variant {}$/;"	c
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Variant {$/;"	c
Variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Variant {$/;"	c
Vec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    impl<'q, T: 'q> RepAsIteratorExt<'q> for Vec<T> {$/;"	c	module:ext
Vec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^    impl<T> FoldHelper for Vec<T> {$/;"	c	module:fold
Vec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^impl ParseQuote for Vec<Stmt> {$/;"	c
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for VisRestricted {$/;"	c
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^        impl VisRestricted {$/;"	c	method:VisRestricted::fmt
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for VisRestricted {$/;"	c
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for VisRestricted {}$/;"	c
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for VisRestricted {$/;"	c
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for VisRestricted {$/;"	c
VisRestricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^    impl ToTokens for VisRestricted {$/;"	c	module:printing
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for Visibility {$/;"	c
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for Visibility {$/;"	c
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for Visibility {}$/;"	c
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for Visibility {$/;"	c
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for Visibility {$/;"	c
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    impl Visibility {$/;"	c	module:parsing
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^    impl Parse for Visibility {$/;"	c	module:parsing
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^    impl ToTokens for Visibility {$/;"	c	module:printing
Visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^    impl Visibility {$/;"	c	module:parsing
Visit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub trait Visit<'ast> {$/;"	i
VisitMut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub trait VisitMut {$/;"	i
WORKS	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^static WORKS: AtomicUsize = AtomicUsize::new(0);$/;"	v
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for WhereClause {$/;"	c
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for WhereClause {$/;"	c
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for WhereClause {}$/;"	c
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for WhereClause {$/;"	c
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for WhereClause {$/;"	c
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for WhereClause {$/;"	c	module:parsing
WhereClause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl ToTokens for WhereClause {$/;"	c	module:printing
WhereClauseLocation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    enum WhereClauseLocation {$/;"	g	module:parsing
WherePredicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^impl Clone for WherePredicate {$/;"	c
WherePredicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^impl Debug for WherePredicate {$/;"	c
WherePredicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl Eq for WherePredicate {}$/;"	c
WherePredicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^impl PartialEq for WherePredicate {$/;"	c
WherePredicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^impl Hash for WherePredicate {$/;"	c
WherePredicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    impl Parse for WherePredicate {$/;"	c	module:parsing
WithSpan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub struct WithSpan {$/;"	s	module:private
_Test	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^struct _Test$/;"	s
__into_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        pub fn __into_span(&self) -> Span {$/;"	P	implementation:get_span::GetSpanInner
__into_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        pub fn __into_span(&self) -> T {$/;"	P	implementation:get_span::GetSpanBase
__into_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        pub fn __into_span(self) -> Span {$/;"	P	implementation:get_span::GetSpan
__parse_scoped	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> {$/;"	P	interface:Parser
__parse_scoped	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn __parse_scoped(self, scope: Span, tokens: TokenStream) -> Result<Self::Output> {$/;"	f
__private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^pub mod __private;$/;"	n
__private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod __private;$/;"	n
__span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    fn __span(&self) -> Span {$/;"	P	implementation:DelimSpan
__span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    fn __span(&self) -> Span {$/;"	P	implementation:Span
__span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    fn __span(&self) -> Span {$/;"	P	implementation:T
__span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^    fn __span(&self) -> Span;$/;"	P	interface:Spanned
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    _marker: Marker,$/;"	m	struct:DelimSpan
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        _marker: Marker,$/;"	m	struct:token_stream::IntoIter
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    _marker: Marker,$/;"	m	struct:Ident
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    _marker: Marker,$/;"	m	struct:LexError
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    _marker: Marker,$/;"	m	struct:Literal
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    _marker: Marker,$/;"	m	struct:SourceFile
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    _marker: Marker,$/;"	m	struct:Span
_marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    _marker: Marker,$/;"	m	struct:TokenStream
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn _new(string: &str, raw: bool, span: Span) -> Self {$/;"	P	implementation:Ident
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) fn _new(repr: String) -> Self {$/;"	P	implementation:Literal
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new(inner: imp::Group) -> Self {$/;"	P	implementation:Group
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new(inner: imp::Ident) -> Self {$/;"	P	implementation:Ident
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new(inner: imp::Literal) -> Self {$/;"	P	implementation:Literal
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new(inner: imp::SourceFile) -> Self {$/;"	P	implementation:SourceFile
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new(inner: imp::Span) -> Self {$/;"	P	implementation:Span
_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new(inner: imp::TokenStream) -> Self {$/;"	P	implementation:TokenStream
_new_fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new_fallback(inner: fallback::Group) -> Self {$/;"	P	implementation:Group
_new_fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new_fallback(inner: fallback::Literal) -> Self {$/;"	P	implementation:Literal
_new_fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new_fallback(inner: fallback::Span) -> Self {$/;"	P	implementation:Span
_new_fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new_fallback(inner: fallback::TokenStream) -> Self {$/;"	P	implementation:TokenStream
_new_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn _new_raw(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
a_name_with_a_dot	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn a_name_with_a_dot() {$/;"	f	module:tests
accept_as_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^    fn accept_as_ident(ident: &Ident) -> bool {$/;"	f	module:parsing
add_assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^    fn add_assign(&mut self, mut increment: u8) {$/;"	P	implementation:BigInt
add_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn add_file(&mut self, src: &str) -> Span {$/;"	P	implementation:SourceMap
add_rule	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^macro_rules! add_rule{$/;"	M
add_rule	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^macro_rules! add_rule{$/;"	M
advance	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub fn advance(&self, bytes: usize) -> Cursor<'a> {$/;"	P	implementation:Cursor
advance_step_cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub(crate) fn advance_step_cursor<'c, 'a>(proof: StepCursor<'c, 'a>, to: Cursor<'c>) -> Cursor<'/;"	f
advance_to	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^    fn advance_to(&self, fork: &Self) {$/;"	P	implementation:ParseBuffer
advance_to	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^    fn advance_to(&self, fork: &Self);$/;"	P	interface:Speculative
after	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn after(&self) -> Span {$/;"	P	implementation:Span
after	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn after(&self) -> Span {$/;"	P	implementation:Span
after	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn after(&self) -> Span {$/;"	P	implementation:Span
ambig_ty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    pub(crate) fn ambig_ty($/;"	f	module:parsing
ambiguous_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn ambiguous_expr($/;"	f	module:parsing
any_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub(crate) fn any_group(self) -> Option<(Cursor<'a>, Delimiter, DelimSpan, Cursor<'a>)> {$/;"	P	implementation:Cursor
any_group_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub(crate) fn any_group_token(self) -> Option<(Group, Cursor<'a>)> {$/;"	P	implementation:Cursor
apostrophe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    pub apostrophe: Span,$/;"	m	struct:Lifetime
append	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append<U>(&mut self, token: U)$/;"	P	implementation:TokenStream
append	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append<U>(&mut self, token: U)$/;"	P	interface:TokenStreamExt
append_all	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append_all<I>(&mut self, iter: I)$/;"	P	implementation:TokenStream
append_all	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append_all<I>(&mut self, iter: I)$/;"	P	interface:TokenStreamExt
append_on_new_word	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn append_on_new_word(mut result: String, first_word: bool, character: char, camel_options: &Cam/;"	f
append_separated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append_separated<I, U>(&mut self, iter: I, op: U)$/;"	P	implementation:TokenStream
append_separated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append_separated<I, U>(&mut self, iter: I, op: U)$/;"	P	interface:TokenStreamExt
append_terminated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append_terminated<I, U>(&mut self, iter: I, term: U)$/;"	P	implementation:TokenStream
append_terminated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^    fn append_terminated<I, U>(&mut self, iter: I, term: U)$/;"	P	interface:TokenStreamExt
array_or_repeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn array_or_repeat(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
as_bytes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    fn as_bytes(&self) -> &'a [u8] {$/;"	P	implementation:Cursor
as_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn as_char(&self) -> char {$/;"	P	implementation:Punct
as_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^    macro_rules! as_item {$/;"	M	module:tests
as_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn as_mut(&mut self) -> RcVecMut<T> {$/;"	P	implementation:RcVecBuilder
as_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn as_mut(&mut self) -> RcVecMut<T> {$/;"	P	implementation:RcVecMut
as_turbofish	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn as_turbofish(&self) -> Turbofish {$/;"	P	implementation:TypeGenerics
ast_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! ast_enum {$/;"	M
ast_enum_from_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! ast_enum_from_struct {$/;"	M
ast_enum_of_structs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! ast_enum_of_structs {$/;"	M
ast_enum_of_structs_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! ast_enum_of_structs_impl {$/;"	M
ast_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! ast_struct {$/;"	M
atom_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn atom_expr(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
atom_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn atom_expr(input: ParseStream, allow_struct: AllowStruct) -> Result<Expr> {$/;"	f	module:parsing
attr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod attr;$/;"	n
backslash_u	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn backslash_u<I>(chars: &mut I) -> bool$/;"	f
backslash_u	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn backslash_u(mut s: &str) -> (char, &str) {$/;"	f	module:value
backslash_x	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn backslash_x<S>(s: &S) -> (u8, &S)$/;"	f	module:value
backslash_x_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn backslash_x_byte<I>(chars: &mut I) -> bool$/;"	f
backslash_x_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn backslash_x_char<I>(chars: &mut I) -> bool$/;"	f
base10_digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn base10_digits(&self) -> &str {$/;"	P	implementation:LitFloat
base10_digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn base10_digits(&self) -> &str {$/;"	P	implementation:LitInt
base10_parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn base10_parse<N>(&self) -> Result<N>$/;"	P	implementation:LitFloat
base10_parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn base10_parse<N>(&self) -> Result<N>$/;"	P	implementation:LitInt
before	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn before(&self) -> Span {$/;"	P	implementation:Span
before	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn before(&self) -> Span {$/;"	P	implementation:Span
before	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn before(&self) -> Span {$/;"	P	implementation:Span
begin	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn begin(&self) -> Cursor {$/;"	P	implementation:TokenBuffer
bench_camel0	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn bench_camel0(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_camel1	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn bench_camel1(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_camel2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn bench_camel2(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn bench_class_case(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_class_from_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn bench_class_from_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_camel	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn bench_is_camel(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_class	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn bench_is_class(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_kebab	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn bench_is_kebab(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_pascal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn bench_is_pascal(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_screaming_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn bench_is_screaming_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_sentence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn bench_is_sentence(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn bench_is_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn bench_is_table_case(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_title	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn bench_is_title(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_is_train	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn bench_is_train(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_kebab	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn bench_kebab(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_kebab_from_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn bench_kebab_from_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_pascal0	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn bench_pascal0(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_pascal1	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn bench_pascal1(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_pascal2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn bench_pascal2(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_screaming_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn bench_screaming_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_sentence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn bench_sentence(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_sentence_from_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn bench_sentence_from_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_snake_from_camel	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn bench_snake_from_camel(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_snake_from_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn bench_snake_from_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_snake_from_title	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn bench_snake_from_title(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn bench_table_case(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_title	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn bench_title(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_title_from_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn bench_title_from_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_train	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn bench_train(b: &mut Bencher) {$/;"	f	module:benchmarks
bench_train_from_snake	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn bench_train_from_snake(b: &mut Bencher) {$/;"	f	module:benchmarks
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^mod benchmarks {$/;"	n
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    macro_rules! benchmarks {$/;"	M	module:benchmarks
benchmarks	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^mod benchmarks {$/;"	n
between	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/verbatim.rs	/^pub(crate) fn between<'a>(begin: ParseBuffer<'a>, end: ParseStream<'a>) -> TokenStream {$/;"	f
bigint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod bigint;$/;"	n
bitor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn bitor(self, _rhs: HasIterator) -> HasIterator {$/;"	P	implementation:HasIterator
bitor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn bitor(self, _rhs: HasIterator) -> HasIterator {$/;"	P	implementation:ThereIsNoIteratorInRepetition
bitor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn bitor(self, _rhs: ThereIsNoIteratorInRepetition) -> HasIterator {$/;"	P	implementation:HasIterator
bitor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn bitor(self, _rhs: ThereIsNoIteratorInRepetition) -> ThereIsNoIteratorInRepetition {$/;"	P	implementation:ThereIsNoIteratorInRepetition
block_comment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn block_comment(input: Cursor) -> PResult<&str> {$/;"	f
bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for bool {$/;"	c
bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/export.rs	/^pub type bool = help::Bool;$/;"	t
bounds	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        bounds: Punctuated<TypeParamBound, Token![+]>,$/;"	m	struct:parsing::FlexibleItemType
boxes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^    fn boxes() {$/;"	f	module:tests
braced	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^macro_rules! braced {$/;"	M
bracketed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^macro_rules! bracketed {$/;"	M
buffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod buffer;$/;"	n
build	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn build(self) -> TokenStream {$/;"	P	implementation:TokenStreamBuilder
build	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn build(self) -> RcVec<T> {$/;"	P	implementation:RcVecBuilder
build_sql_queries	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^fn build_sql_queries(config: &Config) -> TokenStream2 {$/;"	f
build_sqlx_crud_impl	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^fn build_sqlx_crud_impl(config: &Config) -> TokenStream2 {$/;"	f
build_static_model_schema	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^fn build_static_model_schema(config: &Config) -> TokenStream2 {$/;"	f
bump_ignore_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    unsafe fn bump_ignore_group(self) -> Cursor<'a> {$/;"	P	implementation:Cursor
byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn byte(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn byte<S: AsRef<[u8]> + ?Sized>(s: &S, idx: usize) -> u8 {$/;"	f	module:value
byte_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn byte_string(bytes: &[u8]) -> Literal {$/;"	P	implementation:Literal
byte_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn byte_string(s: &[u8]) -> Literal {$/;"	P	implementation:Literal
byte_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn byte_string(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
byte_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn byte_string(bytes: &[u8]) -> Literal {$/;"	P	implementation:Literal
bytes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    fn bytes(&self) -> Bytes<'a> {$/;"	P	implementation:Cursor
call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn call<T>(&self, function: fn(ParseStream) -> Result<T>) -> Result<T> {$/;"	P	implementation:ParseBuffer
call_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn call_site() -> Self {$/;"	P	implementation:LexError
call_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn call_site() -> Self {$/;"	P	implementation:Span
call_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn call_site() -> Self {$/;"	P	implementation:Span
call_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn call_site() -> Self {$/;"	P	implementation:LexError
call_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn call_site() -> Self {$/;"	P	implementation:Span
camelcase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod camelcase;$/;"	n
case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^mod case;$/;"	n
cases	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^pub mod cases;$/;"	n
cell	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    cell: Cell<Cursor<'static>>,$/;"	m	struct:ParseBuffer
cell_clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^fn cell_clone<T: Default + Clone>(cell: &Cell<T>) -> T {$/;"	f
ch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    ch: char,$/;"	m	struct:Punct
char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for char {$/;"	c
char_indices	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    fn char_indices(&self) -> CharIndices<'a> {$/;"	P	implementation:Cursor
char_is_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn char_is_seperator(character: &char) -> bool {$/;"	f
char_is_uppercase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn char_is_uppercase(test_char: char) -> bool {$/;"	f
character	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn character(t: char) -> Literal {$/;"	P	implementation:Literal
character	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn character(ch: char) -> Literal {$/;"	P	implementation:Literal
character	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn character(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
character	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn character(t: char) -> Literal {$/;"	P	implementation:Literal
chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    fn chars(&self) -> Chars<'a> {$/;"	P	implementation:Cursor
check_cast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn check_cast(input: ParseStream) -> Result<()> {$/;"	f	module:parsing
check_keyword_matches	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! check_keyword_matches {$/;"	M
check_unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn check_unexpected(&self) -> Result<()> {$/;"	P	implementation:ParseBuffer
classcase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod classcase;$/;"	n
clear	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn clear(&mut self) {$/;"	P	implementation:Punctuated
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:RcVec
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Cursor
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Error
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ErrorMessage
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:SpanRange
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn clone(&self) -> Self {$/;"	P	implementation:parsing::AllowStruct
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn clone(&self) -> Self {$/;"	P	implementation:parsing::Precedence
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^        fn clone(&self) -> Self {$/;"	P	implementation:private::PeekFn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Abi
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:AngleBracketedGenericArguments
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Arm
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:AssocConst
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:AssocType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:AttrStyle
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Attribute
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:BareFnArg
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:BareVariadic
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:BinOp
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Block
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:BoundLifetimes
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ConstParam
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Constraint
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Data
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:DataEnum
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:DataStruct
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:DataUnion
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:DeriveInput
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Expr
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprArray
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprAssign
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprAsync
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprAwait
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprBinary
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprBlock
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprBreak
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprCall
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprCast
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprClosure
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprConst
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprContinue
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprField
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprForLoop
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprGroup
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprIf
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprIndex
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprInfer
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprLet
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprLit
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprLoop
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprMatch
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprMethodCall
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprParen
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprPath
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprRange
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprReference
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprRepeat
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprReturn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprStruct
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprTry
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprTryBlock
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprTuple
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprUnary
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprUnsafe
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprWhile
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ExprYield
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Field
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:FieldMutability
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:FieldPat
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:FieldValue
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Fields
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:FieldsNamed
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:FieldsUnnamed
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:File
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:FnArg
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ForeignItem
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ForeignItemFn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ForeignItemMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ForeignItemStatic
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ForeignItemType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:GenericArgument
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:GenericParam
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Generics
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ImplItem
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ImplItemConst
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ImplItemFn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ImplItemMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ImplItemType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ImplRestriction
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Index
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Item
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemConst
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemEnum
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemExternCrate
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemFn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemForeignMod
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemImpl
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemMod
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemStatic
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemStruct
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemTrait
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemTraitAlias
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemUnion
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ItemUse
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Label
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:LifetimeParam
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Lit
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:LitBool
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Local
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:LocalInit
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Macro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:MacroDelimiter
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Member
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Meta
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:MetaList
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:MetaNameValue
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ParenthesizedGenericArguments
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Pat
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatIdent
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatOr
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatParen
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatReference
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatRest
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatSlice
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatStruct
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatTuple
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatTupleStruct
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PatWild
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Path
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PathArguments
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PathSegment
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PredicateLifetime
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PredicateType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:QSelf
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:RangeLimits
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Receiver
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ReturnType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Signature
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:StaticMutability
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Stmt
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:StmtMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitBound
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitBoundModifier
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitItem
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitItemConst
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitItemFn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitItemMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TraitItemType
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Type
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeArray
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeBareFn
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeGroup
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeImplTrait
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeInfer
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeMacro
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeNever
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeParam
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeParamBound
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeParen
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypePath
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypePtr
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeReference
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeSlice
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeTraitObject
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:TypeTuple
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UnOp
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UseGlob
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UseGroup
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UseName
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UsePath
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UseRename
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:UseTree
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Variadic
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Variant
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:VisRestricted
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Visibility
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:WhereClause
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/clone.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:WherePredicate
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    mod clone;$/;"	n	module:gen
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Lifetime
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:LitFloatRepr
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:LitIntRepr
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:LitRepr
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:StepCursor
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Unexpected
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Iter
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Pairs
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:PrivateIter
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn clone(&self) -> Self {$/;"	f
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:ThreadBound
clone	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn clone(&self) -> Self {$/;"	P	implementation:Group
clone_box	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn clone_box(&self) -> Box<NoDrop<dyn IterTrait<'a, T> + 'a>> {$/;"	f
clone_box	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn clone_box(&self) -> Box<NoDrop<dyn IterTrait<'a, T> + 'a>>;$/;"	P	interface:IterTrait
cloned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn cloned(self) -> Pair<T, P>$/;"	P	implementation:Pair
close	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    pub fn close(&self) -> Span {$/;"	P	implementation:DelimSpan
close_span_of_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub(crate) fn close_span_of_group(cursor: Cursor) -> Span {$/;"	f
closure_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn closure_arg(input: ParseStream) -> Result<Pat> {$/;"	f	module:parsing
cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn cmp(&self, other: &Ident) -> Ordering {$/;"	P	implementation:Ident
cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^    fn cmp(&self, other: &Self) -> Ordering {$/;"	P	implementation:LineColumn
cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    fn cmp(&self, other: &Lifetime) -> Ordering {$/;"	P	implementation:Lifetime
cmp_assuming_same_buffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub(crate) fn cmp_assuming_same_buffer(a: Cursor, b: Cursor) -> Ordering {$/;"	f
colon_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        colon_token: Option<Token![:]>,$/;"	m	struct:parsing::FlexibleItemType
column	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^    pub column: usize,$/;"	m	struct:LineColumn
combine	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    pub fn combine(&mut self, another: Error) {$/;"	P	implementation:Error
comparisons	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    comparisons: RefCell<Vec<&'static str>>,$/;"	m	struct:Lookahead1
compiler_literal_from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^fn compiler_literal_from_str(repr: &str) -> Result<proc_macro::Literal, LexError> {$/;"	f
const_argument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub(crate) fn const_argument(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
const_params	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn const_params(&self) -> ConstParams {$/;"	P	implementation:Generics
const_params_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn const_params_mut(&mut self) -> ConstParamsMut {$/;"	P	implementation:Generics
constants	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/mod.rs	/^mod constants;$/;"	n
content	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub content: ParseBuffer<'a>,$/;"	m	struct:Braces
content	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub content: ParseBuffer<'a>,$/;"	m	struct:Brackets
content	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub content: ParseBuffer<'a>,$/;"	m	struct:Group
content	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub content: ParseBuffer<'a>,$/;"	m	struct:Parens
convert	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod convert;$/;"	n
cooked_byte_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn cooked_byte_string(mut input: Cursor) -> Result<Cursor, Reject> {$/;"	f
cooked_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn cooked_string(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
crate_name	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    crate_name: TokenStream2,$/;"	m	struct:Config
create	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    unsafe fn create(mut ptr: *const Entry, scope: *const Entry) -> Self {$/;"	P	implementation:Cursor
cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    cursor: Cursor<'a>,$/;"	m	struct:Lookahead1
cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    cursor: Cursor<'c>,$/;"	m	struct:StepCursor
cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn cursor(&self) -> Cursor<'a> {$/;"	P	implementation:ParseBuffer
custom_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_keyword.rs	/^macro_rules! custom_keyword {$/;"	M
custom_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod custom_keyword;$/;"	n
custom_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! custom_punctuation {$/;"	M
custom_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod custom_punctuation;$/;"	n
custom_punctuation_len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! custom_punctuation_len {$/;"	M
custom_punctuation_repr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! custom_punctuation_repr {$/;"	M
custom_punctuation_unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! custom_punctuation_unexpected {$/;"	M
data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod data;$/;"	n
data_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^    pub(crate) fn data_enum($/;"	f	module:parsing
data_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^    pub(crate) fn data_struct($/;"	f	module:parsing
data_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^    pub(crate) fn data_union(input: ParseStream) -> Result<(Option<WhereClause>, FieldsNamed)> {$/;"	f	module:parsing
db_ty	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    db_ty: DbType,$/;"	m	struct:Config
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:AngleBracketedGenericArguments::fmt::AngleBracketedGenericArguments
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:DataEnum::fmt::DataEnum
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:DataStruct::fmt::DataStruct
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:DataUnion::fmt::DataUnion
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprArray::fmt::ExprArray
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprAssign::fmt::ExprAssign
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprAsync::fmt::ExprAsync
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprAwait::fmt::ExprAwait
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprBinary::fmt::ExprBinary
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprBlock::fmt::ExprBlock
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprBreak::fmt::ExprBreak
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprCall::fmt::ExprCall
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprCast::fmt::ExprCast
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprClosure::fmt::ExprClosure
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprConst::fmt::ExprConst
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprContinue::fmt::ExprContinue
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprField::fmt::ExprField
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprForLoop::fmt::ExprForLoop
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprGroup::fmt::ExprGroup
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprIf::fmt::ExprIf
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprIndex::fmt::ExprIndex
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprInfer::fmt::ExprInfer
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprLet::fmt::ExprLet
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprLit::fmt::ExprLit
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprLoop::fmt::ExprLoop
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprMacro::fmt::ExprMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprMatch::fmt::ExprMatch
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprMethodCall::fmt::ExprMethodCall
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprParen::fmt::ExprParen
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprPath::fmt::ExprPath
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprRange::fmt::ExprRange
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprReference::fmt::ExprReference
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprRepeat::fmt::ExprRepeat
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprReturn::fmt::ExprReturn
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprStruct::fmt::ExprStruct
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprTry::fmt::ExprTry
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprTryBlock::fmt::ExprTryBlock
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprTuple::fmt::ExprTuple
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprUnary::fmt::ExprUnary
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprUnsafe::fmt::ExprUnsafe
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprWhile::fmt::ExprWhile
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ExprYield::fmt::ExprYield
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:FieldsNamed::fmt::FieldsNamed
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:FieldsUnnamed::fmt::FieldsUnnamed
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ForeignItemFn::fmt::ForeignItemFn
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ForeignItemMacro::fmt::ForeignItemMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ForeignItemStatic::fmt::ForeignItemStatic
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ForeignItemType::fmt::ForeignItemType
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ImplItemConst::fmt::ImplItemConst
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ImplItemFn::fmt::ImplItemFn
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ImplItemMacro::fmt::ImplItemMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ImplItemType::fmt::ImplItemType
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemConst::fmt::ItemConst
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemEnum::fmt::ItemEnum
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemExternCrate::fmt::ItemExternCrate
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemFn::fmt::ItemFn
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemForeignMod::fmt::ItemForeignMod
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemImpl::fmt::ItemImpl
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemMacro::fmt::ItemMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemMod::fmt::ItemMod
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemStatic::fmt::ItemStatic
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemStruct::fmt::ItemStruct
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemTrait::fmt::ItemTrait
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemTraitAlias::fmt::ItemTraitAlias
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemType::fmt::ItemType
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemUnion::fmt::ItemUnion
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ItemUse::fmt::ItemUse
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:Lifetime::fmt::Lifetime
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:Local::fmt::Local
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:MetaList::fmt::MetaList
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:MetaNameValue::fmt::MetaNameValue
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:ParenthesizedGenericArguments::fmt::ParenthesizedGenericArguments
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatIdent::fmt::PatIdent
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatOr::fmt::PatOr
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatParen::fmt::PatParen
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatReference::fmt::PatReference
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatRest::fmt::PatRest
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatSlice::fmt::PatSlice
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatStruct::fmt::PatStruct
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatTuple::fmt::PatTuple
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatTupleStruct::fmt::PatTupleStruct
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatType::fmt::PatType
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:PatWild::fmt::PatWild
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:Path::fmt::Path
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:StmtMacro::fmt::StmtMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TraitItemConst::fmt::TraitItemConst
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TraitItemFn::fmt::TraitItemFn
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TraitItemMacro::fmt::TraitItemMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TraitItemType::fmt::TraitItemType
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeArray::fmt::TypeArray
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeBareFn::fmt::TypeBareFn
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeGroup::fmt::TypeGroup
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeImplTrait::fmt::TypeImplTrait
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeInfer::fmt::TypeInfer
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeMacro::fmt::TypeMacro
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeNever::fmt::TypeNever
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeParen::fmt::TypeParen
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypePath::fmt::TypePath
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypePtr::fmt::TypePtr
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeReference::fmt::TypeReference
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeSlice::fmt::TypeSlice
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeTraitObject::fmt::TypeTraitObject
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:TypeTuple::fmt::TypeTuple
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^            fn debug(&self, formatter: &mut fmt::Formatter, name: &str) -> fmt::Result {$/;"	P	implementation:VisRestricted::fmt::VisRestricted
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    mod debug;$/;"	n	module:gen
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitBool::fmt::LitBool
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitByte::fmt::LitByte
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitByteStr::fmt::LitByteStr
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitChar::fmt::LitChar
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitFloat::fmt::LitFloat
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitInt::fmt::LitInt
debug	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^                pub(crate) fn debug($/;"	P	implementation:debug_impls::LitStr::fmt::LitStr
debug_impls	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^mod debug_impls {$/;"	n
debug_span_field_if_nontrivial	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) fn debug_span_field_if_nontrivial(debug: &mut fmt::DebugStruct, span: Span) {$/;"	f
debug_span_field_if_nontrivial	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^pub(crate) fn debug_span_field_if_nontrivial(debug: &mut fmt::DebugStruct, span: Span) {$/;"	f
deconstantize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn deconstantize(&self) -> String;$/;"	P	interface:Inflector
deconstantize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/deconstantize/mod.rs	/^pub fn deconstantize(non_deconstantized_string: &str) -> String {$/;"	f
deconstantize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/mod.rs	/^pub mod deconstantize;$/;"	n
def_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn def_site() -> Self {$/;"	P	implementation:Span
def_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn def_site() -> Self {$/;"	P	implementation:Span
def_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn def_site() -> Self {$/;"	P	implementation:Span
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn default() -> Self {$/;"	P	implementation:TokenStream
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn default() -> Self {$/;"	P	implementation:BoundLifetimes
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn default() -> Self {$/;"	P	implementation:Generics
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn default() -> Self {$/;"	P	implementation:Unexpected
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    fn default() -> Self {$/;"	P	implementation:PathArguments
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn default() -> Self {$/;"	P	implementation:Punctuated
default	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn default() -> Self {$/;"	P	implementation:Group
defaultness	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        defaultness: Option<Token![default]>,$/;"	m	struct:parsing::FlexibleItemType
define_delimiters	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! define_delimiters {$/;"	M
define_gated_implementations	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^macro_rules! define_gated_implementations {$/;"	M
define_implementations	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^macro_rules! define_implementations {$/;"	M
define_keywords	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! define_keywords {$/;"	M
define_number_implementations	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^macro_rules! define_number_implementations {$/;"	M
define_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! define_punctuation {$/;"	M
define_punctuation_structs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! define_punctuation_structs {$/;"	M
delim	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub(crate) fn delim($/;"	f	module:printing
delim_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn delim_span(&self) -> DelimSpan {$/;"	P	implementation:Group
delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    delimiter: Delimiter,$/;"	m	struct:Group
delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn delimiter(&self) -> Delimiter {$/;"	P	implementation:Group
delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn delimiter(&self) -> Delimiter {$/;"	P	implementation:Group
delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn delimiter(&self) -> Delimiter {$/;"	P	implementation:Group
demodulize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn demodulize(&self) -> String;$/;"	P	interface:Inflector
demodulize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/demodulize/mod.rs	/^pub fn demodulize(non_demodulize_string: &str) -> String {$/;"	f
demodulize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/mod.rs	/^pub mod demodulize;$/;"	n
deordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn deordinalize(&self) -> String;$/;"	P	interface:Inflector
deordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/deordinalize/mod.rs	/^pub fn deordinalize(non_ordinalized_string: &str) -> String {$/;"	f
deordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/mod.rs	/^pub mod deordinalize;$/;"	n
deref	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn deref(&self) -> &Self::Target {$/;"	P	implementation:get_span::GetSpan
deref	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn deref(&self) -> &Self::Target {$/;"	P	implementation:get_span::GetSpanInner
deref	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^    fn deref(&self) -> &Self::Target {$/;"	P	implementation:NoDrop
deref	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn deref(&self) -> &Self::Target {$/;"	P	implementation:StepCursor
deref_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^    fn deref_mut(&mut self) -> &mut Self::Target {$/;"	P	implementation:NoDrop
derive	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod derive;$/;"	n
derive	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^pub fn derive(input: TokenStream) -> TokenStream {$/;"	f
detection	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod detection;$/;"	n
digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn digits(mut input: Cursor) -> Result<Cursor, Reject> {$/;"	f
digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^    digits: Vec<u8>,$/;"	m	struct:BigInt
digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    digits: Box<str>,$/;"	m	struct:LitFloatRepr
digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    digits: Box<str>,$/;"	m	struct:LitIntRepr
discouraged	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub mod discouraged;$/;"	n
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    fn display() -> &'static str {$/;"	P	implementation:IdentAny
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^        fn display() -> &'static str {$/;"	P	implementation:parsing::Ident
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str {$/;"	P	implementation:Brace
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str {$/;"	P	implementation:Bracket
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str {$/;"	P	implementation:Group
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str {$/;"	P	implementation:Paren
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str {$/;"	P	implementation:T
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str {$/;"	P	implementation:Underscore
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str;$/;"	P	interface:CustomToken
display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn display() -> &'static str;$/;"	P	interface:Token
do_extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^fn do_extend<T, P, I>(punctuated: &mut Punctuated<T, P>, i: I)$/;"	f
do_parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn do_parse(colon2_token: Option<Token![::]>, input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::AngleBracketedGenericArguments
doc_comment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn doc_comment<'a>(input: Cursor<'a>, trees: &mut TokenStreamBuilder) -> PResult<'a, ()> {$/;"	f
doc_comment_contents	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn doc_comment_contents(input: Cursor) -> PResult<(&str, bool)> {$/;"	f
drop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn drop(&mut self) {$/;"	P	implementation:TokenStream
drop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^        fn drop(&mut self) {}$/;"	P	implementation:test_needs_drop::NeedsDrop
drop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn drop(&mut self) {$/;"	P	implementation:ParseBuffer
drops	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod drops;$/;"	n
else_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn else_block(input: ParseStream) -> Result<(Token![else], Box<Expr>)> {$/;"	f	module:parsing
empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn empty() -> Self {$/;"	P	implementation:Cursor
empty_or_trailing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn empty_or_trailing(&self) -> bool {$/;"	P	implementation:Punctuated
empty_punctuated_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub(crate) fn empty_punctuated_iter<'a, T>() -> Iter<'a, T> {$/;"	f
empty_punctuated_iter_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^pub(crate) fn empty_punctuated_iter_mut<'a, T>() -> IterMut<'a, T> {$/;"	f
end	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn end(&self) -> LineColumn {$/;"	P	implementation:Span
end	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn end(&self) -> LineColumn {$/;"	P	implementation:Span
end	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn end(&self) -> LineColumn {$/;"	P	implementation:Span
end	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    end: Span,$/;"	m	struct:SpanRange
entries	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    entries: Box<[Entry]>,$/;"	m	struct:TokenBuffer
entry	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    fn entry(self) -> &'a Entry {$/;"	P	implementation:Cursor
eof	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn eof(self) -> bool {$/;"	P	implementation:Cursor
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn eq(&self, other: &Ident) -> bool {$/;"	P	implementation:Ident
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn eq(&self, other: &T) -> bool {$/;"	f
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn eq(&self, other: &Ident) -> bool {$/;"	P	implementation:Ident
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn eq(&self, other: &T) -> bool {$/;"	f
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn eq(&self, other: &Span) -> bool {$/;"	P	implementation:Span
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn eq(&self, other: &Ident) -> bool {$/;"	P	implementation:Ident
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn eq(&self, other: &T) -> bool {$/;"	f
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn eq(&self, other: &Span) -> bool {$/;"	P	implementation:Span
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Cursor
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:parsing::Precedence
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Index
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Member
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, _other: &Self) -> bool {$/;"	P	implementation:ImplRestriction
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, _other: &Self) -> bool {$/;"	P	implementation:TypeInfer
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, _other: &Self) -> bool {$/;"	P	implementation:TypeNever
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, _other: &Self) -> bool {$/;"	P	implementation:UseGlob
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Abi
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:AngleBracketedGenericArguments
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Arm
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:AssocConst
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:AssocType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:AttrStyle
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Attribute
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:BareFnArg
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:BareVariadic
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:BinOp
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Block
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:BoundLifetimes
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ConstParam
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Constraint
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Data
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:DataEnum
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:DataStruct
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:DataUnion
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:DeriveInput
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Expr
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprArray
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprAssign
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprAsync
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprAwait
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprBinary
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprBlock
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprBreak
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprCall
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprCast
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprClosure
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprConst
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprContinue
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprField
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprForLoop
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprGroup
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprIf
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprIndex
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprInfer
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprLet
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprLit
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprLoop
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprMatch
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprMethodCall
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprParen
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprPath
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprRange
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprReference
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprRepeat
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprReturn
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprStruct
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprTry
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprTryBlock
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprTuple
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprUnary
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprUnsafe
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprWhile
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ExprYield
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Field
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:FieldMutability
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:FieldPat
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:FieldValue
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Fields
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:FieldsNamed
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:FieldsUnnamed
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:File
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:FnArg
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ForeignItem
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ForeignItemFn
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ForeignItemMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ForeignItemStatic
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ForeignItemType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:GenericArgument
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:GenericParam
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Generics
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ImplItem
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ImplItemConst
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ImplItemFn
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ImplItemMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ImplItemType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Item
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemConst
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemEnum
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemExternCrate
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemFn
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemForeignMod
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemImpl
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemMod
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemStatic
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemStruct
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemTrait
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemTraitAlias
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemUnion
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ItemUse
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Label
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:LifetimeParam
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Lit
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:LitBool
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Local
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:LocalInit
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Macro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:MacroDelimiter
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Meta
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:MetaList
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:MetaNameValue
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ParenthesizedGenericArguments
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Pat
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatIdent
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatOr
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatParen
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatReference
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatRest
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatSlice
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatStruct
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatTuple
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatTupleStruct
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PatWild
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Path
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PathArguments
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PathSegment
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PredicateLifetime
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:PredicateType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:QSelf
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:RangeLimits
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Receiver
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:ReturnType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Signature
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:StaticMutability
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Stmt
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:StmtMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitBound
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitBoundModifier
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitItem
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitItemConst
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitItemFn
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitItemMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TraitItemType
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Type
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeArray
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeBareFn
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeGroup
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeImplTrait
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeMacro
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeParam
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeParamBound
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeParen
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypePath
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypePtr
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeReference
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeSlice
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeTraitObject
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TypeTuple
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UnOp
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UseGroup
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UseName
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UsePath
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UseRename
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:UseTree
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Variadic
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Variant
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:VisRestricted
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:Visibility
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:WhereClause
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/eq.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:WherePredicate
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    mod eq;$/;"	n	module:gen
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    fn eq(&self, other: &Lifetime) -> bool {$/;"	P	implementation:Lifetime
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn eq(&self, _other: &Self) -> bool {$/;"	P	implementation:Nothing
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	f
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn eq(&self, _other: &Group) -> bool {$/;"	P	implementation:Group
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TokenStreamHelper
eq	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	P	implementation:TokenTreeHelper
error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod error;$/;"	n
error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    pub fn error(self) -> Error {$/;"	P	implementation:Lookahead1
error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^    pub fn error(&self, msg: impl Display) -> Error {$/;"	P	implementation:ParseNestedMeta
error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn error<T: Display>(&self, message: T) -> Error {$/;"	P	implementation:ParseBuffer
error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn error<T: Display>(self, message: T) -> Error {$/;"	P	implementation:StepCursor
evaluate_now	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn evaluate_now(&mut self) {$/;"	P	implementation:DeferredTokenStream
expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod expr;$/;"	n
expr_attrs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_attrs(input: ParseStream) -> Result<Vec<Attribute>> {$/;"	f	module:parsing
expr_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_break(input: ParseStream, allow_struct: AllowStruct) -> Result<ExprBreak> {$/;"	f	module:parsing
expr_closure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_closure(input: ParseStream, allow_struct: AllowStruct) -> Result<ExprClosure> {$/;"	f	module:parsing
expr_early	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    pub(crate) fn expr_early(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
expr_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_group(input: ParseStream) -> Result<ExprGroup> {$/;"	f	module:parsing
expr_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_paren(input: ParseStream) -> Result<ExprParen> {$/;"	f	module:parsing
expr_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_range(input: ParseStream, allow_struct: AllowStruct) -> Result<ExprRange> {$/;"	f	module:parsing
expr_ret	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_ret(input: ParseStream, allow_struct: AllowStruct) -> Result<ExprReturn> {$/;"	f	module:parsing
expr_struct_helper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_struct_helper($/;"	f	module:parsing
expr_unary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn expr_unary($/;"	f	module:parsing
ext	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^mod ext;$/;"	n
ext	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub mod ext {$/;"	n
ext	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod ext;$/;"	n
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn extend<I: IntoIterator<Item = TokenStream>>(&mut self, streams: I) {$/;"	P	implementation:TokenStream
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn extend<I: IntoIterator<Item = TokenTree>>(&mut self, tokens: I) {$/;"	P	implementation:TokenStream
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn extend<I: IntoIterator<Item = TokenStream>>(&mut self, streams: I) {$/;"	P	implementation:TokenStream
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn extend<I: IntoIterator<Item = TokenTree>>(&mut self, streams: I) {$/;"	P	implementation:TokenStream
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn extend(&mut self, iter: impl IntoIterator<Item = T>) {$/;"	P	implementation:RcVecBuilder
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn extend(&mut self, iter: impl IntoIterator<Item = T>) {$/;"	P	implementation:RcVecMut
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn extend<I: IntoIterator<Item = TokenStream>>(&mut self, streams: I) {$/;"	P	implementation:TokenStream
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn extend<I: IntoIterator<Item = TokenTree>>(&mut self, stream: I) {$/;"	P	implementation:TokenStream
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn extend<T: IntoIterator<Item = Error>>(&mut self, iter: T) {$/;"	P	implementation:Error
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn extend<I: IntoIterator<Item = Pair<T, P>>>(&mut self, i: I) {$/;"	f
extend	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn extend<I: IntoIterator<Item = T>>(&mut self, i: I) {$/;"	f
external_id	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    external_id: bool,$/;"	m	struct:Config
extra	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub mod extra;$/;"	n
extra	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    extra: Vec<proc_macro::TokenTree>,$/;"	m	struct:DeferredTokenStream
f32_suffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn f32_suffixed(f: f32) -> Literal {$/;"	P	implementation:Literal
f32_unsuffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn f32_unsuffixed(f: f32) -> Literal {$/;"	P	implementation:Literal
f32_unsuffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn f32_unsuffixed(f: f32) -> Literal {$/;"	P	implementation:Literal
f32_unsuffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn f32_unsuffixed(f: f32) -> Literal {$/;"	P	implementation:Literal
f64_suffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn f64_suffixed(f: f64) -> Literal {$/;"	P	implementation:Literal
f64_unsuffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn f64_unsuffixed(f: f64) -> Literal {$/;"	P	implementation:Literal
f64_unsuffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn f64_unsuffixed(f: f64) -> Literal {$/;"	P	implementation:Literal
f64_unsuffixed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn f64_unsuffixed(f: f64) -> Literal {$/;"	P	implementation:Literal
fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub mod fallback;$/;"	n
field_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn field_pat(input: ParseStream) -> Result<FieldPat> {$/;"	f	module:parsing
file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod file;$/;"	n
fileinfo	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fileinfo(&self, span: Span) -> &FileInfo {$/;"	P	implementation:SourceMap
filepath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn filepath(&self, span: Span) -> PathBuf {$/;"	P	implementation:SourceMap
files	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    files: Vec<FileInfo>,$/;"	m	struct:SourceMap
first	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn first(&self) -> Option<&T> {$/;"	P	implementation:Punctuated
first_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) fn first_byte(self) -> Self {$/;"	P	implementation:Span
first_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn first_mut(&mut self) -> Option<&mut T> {$/;"	P	implementation:Punctuated
first_word	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^    pub first_word: bool,$/;"	m	struct:CamelOptions
first_word_or_not_inverted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn first_word_or_not_inverted(first_word: bool, inverted: bool) -> bool {$/;"	f
float	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn float(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
float_digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn float_digits(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:DelimSpan
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Group
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Ident
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LexError
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Literal::byte_string::Literal
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:SourceFile
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Span
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TokenStream
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Group
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Literal::byte_string::Literal
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:token_stream::IntoIter
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Ident
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LexError
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Literal
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Punct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:SourceFile
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Span
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TokenStream
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TokenTree
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Punct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Group
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Ident
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LexError
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Literal
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:SourceFile
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Span
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TokenStream
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Group
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Ident
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:T
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result;$/;"	P	interface:IdentFragment
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:IdentFragmentAdapter
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:parsing::DisplayAttrStyle
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:parsing::DisplayPath
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Error
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ErrorMessage
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Index
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Member
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ImplRestriction
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Abi
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:AngleBracketedGenericArguments
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Arm
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:AssocConst
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:AssocType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:AttrStyle
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Attribute
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:BareFnArg
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:BareVariadic
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:BinOp
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Block
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:BoundLifetimes
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ConstParam
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Constraint
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Data
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:DataEnum
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:DataStruct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:DataUnion
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:DeriveInput
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Expr
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprArray
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprAssign
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprAsync
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprAwait
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprBinary
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprBlock
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprBreak
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprCall
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprCast
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprClosure
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprConst
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprContinue
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprField
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprForLoop
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprGroup
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprIf
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprIndex
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprInfer
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprLet
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprLit
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprLoop
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprMatch
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprMethodCall
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprParen
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprPath
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprRange
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprReference
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprRepeat
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprReturn
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprStruct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprTry
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprTryBlock
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprTuple
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprUnary
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprUnsafe
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprWhile
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ExprYield
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Field
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:FieldMutability
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:FieldPat
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:FieldValue
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Fields
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:FieldsNamed
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:FieldsUnnamed
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:File
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:FnArg
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ForeignItem
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ForeignItemFn
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ForeignItemMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ForeignItemStatic
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ForeignItemType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:GenericArgument
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:GenericParam
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Generics
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ImplItem
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ImplItemConst
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ImplItemFn
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ImplItemMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ImplItemType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Index
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Item
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemConst
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemEnum
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemExternCrate
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemFn
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemForeignMod
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemImpl
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemMod
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemStatic
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemStruct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemTrait
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemTraitAlias
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemUnion
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ItemUse
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Label
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Lifetime
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LifetimeParam
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Lit
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Local
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LocalInit
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Macro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:MacroDelimiter
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Member
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Meta
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:MetaList
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:MetaNameValue
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ParenthesizedGenericArguments
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Pat
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatIdent
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatOr
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatParen
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatReference
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatRest
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatSlice
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatStruct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatTuple
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatTupleStruct
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PatWild
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Path
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PathArguments
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PathSegment
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PredicateLifetime
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:PredicateType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:QSelf
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:RangeLimits
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Receiver
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ReturnType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Signature
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:StaticMutability
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Stmt
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:StmtMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitBound
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitBoundModifier
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitItem
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitItemConst
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitItemFn
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitItemMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TraitItemType
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Type
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeArray
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeBareFn
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeGroup
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeImplTrait
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeInfer
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeMacro
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeNever
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeParam
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeParamBound
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeParen
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypePath
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypePtr
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeReference
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeSlice
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeTraitObject
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:TypeTuple
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UnOp
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UseGlob
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UseGroup
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UseName
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UsePath
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UseRename
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:UseTree
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Variadic
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Variant
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:VisRestricted
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Visibility
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:WhereClause
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/debug.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:WherePredicate
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Lifetime
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitBool
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitByte
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitByteStr
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitChar
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitFloat
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitInt
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:debug_impls::LitStr
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LitFloat
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:LitInt
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Nothing
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ParseBuffer
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Punctuated
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:ThreadBound
fmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	P	implementation:Group
fold	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^pub(crate) mod fold {$/;"	n
fold	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    pub mod fold;$/;"	n	module:gen
fold_abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_abi(&mut self, i: Abi) -> Abi {$/;"	P	interface:Fold
fold_abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_abi<F>(f: &mut F, node: Abi) -> Abi$/;"	f
fold_angle_bracketed_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_angle_bracketed_generic_arguments($/;"	P	interface:Fold
fold_angle_bracketed_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_angle_bracketed_generic_arguments<F>($/;"	f
fold_arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_arm(&mut self, i: Arm) -> Arm {$/;"	P	interface:Fold
fold_arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_arm<F>(f: &mut F, node: Arm) -> Arm$/;"	f
fold_assoc_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_assoc_const(&mut self, i: AssocConst) -> AssocConst {$/;"	P	interface:Fold
fold_assoc_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_assoc_const<F>(f: &mut F, node: AssocConst) -> AssocConst$/;"	f
fold_assoc_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_assoc_type(&mut self, i: AssocType) -> AssocType {$/;"	P	interface:Fold
fold_assoc_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_assoc_type<F>(f: &mut F, node: AssocType) -> AssocType$/;"	f
fold_attr_style	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_attr_style(&mut self, i: AttrStyle) -> AttrStyle {$/;"	P	interface:Fold
fold_attr_style	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_attr_style<F>(f: &mut F, node: AttrStyle) -> AttrStyle$/;"	f
fold_attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_attribute(&mut self, i: Attribute) -> Attribute {$/;"	P	interface:Fold
fold_attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_attribute<F>(f: &mut F, node: Attribute) -> Attribute$/;"	f
fold_bare_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_bare_fn_arg(&mut self, i: BareFnArg) -> BareFnArg {$/;"	P	interface:Fold
fold_bare_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_bare_fn_arg<F>(f: &mut F, node: BareFnArg) -> BareFnArg$/;"	f
fold_bare_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_bare_variadic(&mut self, i: BareVariadic) -> BareVariadic {$/;"	P	interface:Fold
fold_bare_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_bare_variadic<F>(f: &mut F, node: BareVariadic) -> BareVariadic$/;"	f
fold_bin_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_bin_op(&mut self, i: BinOp) -> BinOp {$/;"	P	interface:Fold
fold_bin_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_bin_op<F>(f: &mut F, node: BinOp) -> BinOp$/;"	f
fold_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_block(&mut self, i: Block) -> Block {$/;"	P	interface:Fold
fold_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_block<F>(f: &mut F, node: Block) -> Block$/;"	f
fold_bound_lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_bound_lifetimes(&mut self, i: BoundLifetimes) -> BoundLifetimes {$/;"	P	interface:Fold
fold_bound_lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_bound_lifetimes<F>(f: &mut F, node: BoundLifetimes) -> BoundLifetimes$/;"	f
fold_const_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_const_param(&mut self, i: ConstParam) -> ConstParam {$/;"	P	interface:Fold
fold_const_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_const_param<F>(f: &mut F, node: ConstParam) -> ConstParam$/;"	f
fold_constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_constraint(&mut self, i: Constraint) -> Constraint {$/;"	P	interface:Fold
fold_constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_constraint<F>(f: &mut F, node: Constraint) -> Constraint$/;"	f
fold_data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_data(&mut self, i: Data) -> Data {$/;"	P	interface:Fold
fold_data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_data<F>(f: &mut F, node: Data) -> Data$/;"	f
fold_data_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_data_enum(&mut self, i: DataEnum) -> DataEnum {$/;"	P	interface:Fold
fold_data_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_data_enum<F>(f: &mut F, node: DataEnum) -> DataEnum$/;"	f
fold_data_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_data_struct(&mut self, i: DataStruct) -> DataStruct {$/;"	P	interface:Fold
fold_data_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_data_struct<F>(f: &mut F, node: DataStruct) -> DataStruct$/;"	f
fold_data_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_data_union(&mut self, i: DataUnion) -> DataUnion {$/;"	P	interface:Fold
fold_data_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_data_union<F>(f: &mut F, node: DataUnion) -> DataUnion$/;"	f
fold_derive_input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_derive_input(&mut self, i: DeriveInput) -> DeriveInput {$/;"	P	interface:Fold
fold_derive_input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_derive_input<F>(f: &mut F, node: DeriveInput) -> DeriveInput$/;"	f
fold_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr(&mut self, i: Expr) -> Expr {$/;"	P	interface:Fold
fold_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr<F>(f: &mut F, node: Expr) -> Expr$/;"	f
fold_expr_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_array(&mut self, i: ExprArray) -> ExprArray {$/;"	P	interface:Fold
fold_expr_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_array<F>(f: &mut F, node: ExprArray) -> ExprArray$/;"	f
fold_expr_assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_assign(&mut self, i: ExprAssign) -> ExprAssign {$/;"	P	interface:Fold
fold_expr_assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_assign<F>(f: &mut F, node: ExprAssign) -> ExprAssign$/;"	f
fold_expr_async	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_async(&mut self, i: ExprAsync) -> ExprAsync {$/;"	P	interface:Fold
fold_expr_async	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_async<F>(f: &mut F, node: ExprAsync) -> ExprAsync$/;"	f
fold_expr_await	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_await(&mut self, i: ExprAwait) -> ExprAwait {$/;"	P	interface:Fold
fold_expr_await	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_await<F>(f: &mut F, node: ExprAwait) -> ExprAwait$/;"	f
fold_expr_binary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_binary(&mut self, i: ExprBinary) -> ExprBinary {$/;"	P	interface:Fold
fold_expr_binary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_binary<F>(f: &mut F, node: ExprBinary) -> ExprBinary$/;"	f
fold_expr_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_block(&mut self, i: ExprBlock) -> ExprBlock {$/;"	P	interface:Fold
fold_expr_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_block<F>(f: &mut F, node: ExprBlock) -> ExprBlock$/;"	f
fold_expr_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_break(&mut self, i: ExprBreak) -> ExprBreak {$/;"	P	interface:Fold
fold_expr_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_break<F>(f: &mut F, node: ExprBreak) -> ExprBreak$/;"	f
fold_expr_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_call(&mut self, i: ExprCall) -> ExprCall {$/;"	P	interface:Fold
fold_expr_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_call<F>(f: &mut F, node: ExprCall) -> ExprCall$/;"	f
fold_expr_cast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_cast(&mut self, i: ExprCast) -> ExprCast {$/;"	P	interface:Fold
fold_expr_cast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_cast<F>(f: &mut F, node: ExprCast) -> ExprCast$/;"	f
fold_expr_closure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_closure(&mut self, i: ExprClosure) -> ExprClosure {$/;"	P	interface:Fold
fold_expr_closure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_closure<F>(f: &mut F, node: ExprClosure) -> ExprClosure$/;"	f
fold_expr_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_const(&mut self, i: ExprConst) -> ExprConst {$/;"	P	interface:Fold
fold_expr_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_const<F>(f: &mut F, node: ExprConst) -> ExprConst$/;"	f
fold_expr_continue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_continue(&mut self, i: ExprContinue) -> ExprContinue {$/;"	P	interface:Fold
fold_expr_continue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_continue<F>(f: &mut F, node: ExprContinue) -> ExprContinue$/;"	f
fold_expr_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_field(&mut self, i: ExprField) -> ExprField {$/;"	P	interface:Fold
fold_expr_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_field<F>(f: &mut F, node: ExprField) -> ExprField$/;"	f
fold_expr_for_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_for_loop(&mut self, i: ExprForLoop) -> ExprForLoop {$/;"	P	interface:Fold
fold_expr_for_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_for_loop<F>(f: &mut F, node: ExprForLoop) -> ExprForLoop$/;"	f
fold_expr_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_group(&mut self, i: ExprGroup) -> ExprGroup {$/;"	P	interface:Fold
fold_expr_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_group<F>(f: &mut F, node: ExprGroup) -> ExprGroup$/;"	f
fold_expr_if	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_if(&mut self, i: ExprIf) -> ExprIf {$/;"	P	interface:Fold
fold_expr_if	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_if<F>(f: &mut F, node: ExprIf) -> ExprIf$/;"	f
fold_expr_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_index(&mut self, i: ExprIndex) -> ExprIndex {$/;"	P	interface:Fold
fold_expr_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_index<F>(f: &mut F, node: ExprIndex) -> ExprIndex$/;"	f
fold_expr_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_infer(&mut self, i: ExprInfer) -> ExprInfer {$/;"	P	interface:Fold
fold_expr_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_infer<F>(f: &mut F, node: ExprInfer) -> ExprInfer$/;"	f
fold_expr_let	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_let(&mut self, i: ExprLet) -> ExprLet {$/;"	P	interface:Fold
fold_expr_let	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_let<F>(f: &mut F, node: ExprLet) -> ExprLet$/;"	f
fold_expr_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_lit(&mut self, i: ExprLit) -> ExprLit {$/;"	P	interface:Fold
fold_expr_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_lit<F>(f: &mut F, node: ExprLit) -> ExprLit$/;"	f
fold_expr_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_loop(&mut self, i: ExprLoop) -> ExprLoop {$/;"	P	interface:Fold
fold_expr_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_loop<F>(f: &mut F, node: ExprLoop) -> ExprLoop$/;"	f
fold_expr_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_macro(&mut self, i: ExprMacro) -> ExprMacro {$/;"	P	interface:Fold
fold_expr_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_macro<F>(f: &mut F, node: ExprMacro) -> ExprMacro$/;"	f
fold_expr_match	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_match(&mut self, i: ExprMatch) -> ExprMatch {$/;"	P	interface:Fold
fold_expr_match	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_match<F>(f: &mut F, node: ExprMatch) -> ExprMatch$/;"	f
fold_expr_method_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_method_call(&mut self, i: ExprMethodCall) -> ExprMethodCall {$/;"	P	interface:Fold
fold_expr_method_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_method_call<F>(f: &mut F, node: ExprMethodCall) -> ExprMethodCall$/;"	f
fold_expr_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_paren(&mut self, i: ExprParen) -> ExprParen {$/;"	P	interface:Fold
fold_expr_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_paren<F>(f: &mut F, node: ExprParen) -> ExprParen$/;"	f
fold_expr_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_path(&mut self, i: ExprPath) -> ExprPath {$/;"	P	interface:Fold
fold_expr_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_path<F>(f: &mut F, node: ExprPath) -> ExprPath$/;"	f
fold_expr_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_range(&mut self, i: ExprRange) -> ExprRange {$/;"	P	interface:Fold
fold_expr_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_range<F>(f: &mut F, node: ExprRange) -> ExprRange$/;"	f
fold_expr_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_reference(&mut self, i: ExprReference) -> ExprReference {$/;"	P	interface:Fold
fold_expr_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_reference<F>(f: &mut F, node: ExprReference) -> ExprReference$/;"	f
fold_expr_repeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_repeat(&mut self, i: ExprRepeat) -> ExprRepeat {$/;"	P	interface:Fold
fold_expr_repeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_repeat<F>(f: &mut F, node: ExprRepeat) -> ExprRepeat$/;"	f
fold_expr_return	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_return(&mut self, i: ExprReturn) -> ExprReturn {$/;"	P	interface:Fold
fold_expr_return	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_return<F>(f: &mut F, node: ExprReturn) -> ExprReturn$/;"	f
fold_expr_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_struct(&mut self, i: ExprStruct) -> ExprStruct {$/;"	P	interface:Fold
fold_expr_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_struct<F>(f: &mut F, node: ExprStruct) -> ExprStruct$/;"	f
fold_expr_try	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_try(&mut self, i: ExprTry) -> ExprTry {$/;"	P	interface:Fold
fold_expr_try	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_try<F>(f: &mut F, node: ExprTry) -> ExprTry$/;"	f
fold_expr_try_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_try_block(&mut self, i: ExprTryBlock) -> ExprTryBlock {$/;"	P	interface:Fold
fold_expr_try_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_try_block<F>(f: &mut F, node: ExprTryBlock) -> ExprTryBlock$/;"	f
fold_expr_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_tuple(&mut self, i: ExprTuple) -> ExprTuple {$/;"	P	interface:Fold
fold_expr_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_tuple<F>(f: &mut F, node: ExprTuple) -> ExprTuple$/;"	f
fold_expr_unary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_unary(&mut self, i: ExprUnary) -> ExprUnary {$/;"	P	interface:Fold
fold_expr_unary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_unary<F>(f: &mut F, node: ExprUnary) -> ExprUnary$/;"	f
fold_expr_unsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_unsafe(&mut self, i: ExprUnsafe) -> ExprUnsafe {$/;"	P	interface:Fold
fold_expr_unsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_unsafe<F>(f: &mut F, node: ExprUnsafe) -> ExprUnsafe$/;"	f
fold_expr_while	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_while(&mut self, i: ExprWhile) -> ExprWhile {$/;"	P	interface:Fold
fold_expr_while	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_while<F>(f: &mut F, node: ExprWhile) -> ExprWhile$/;"	f
fold_expr_yield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_expr_yield(&mut self, i: ExprYield) -> ExprYield {$/;"	P	interface:Fold
fold_expr_yield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_expr_yield<F>(f: &mut F, node: ExprYield) -> ExprYield$/;"	f
fold_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_field(&mut self, i: Field) -> Field {$/;"	P	interface:Fold
fold_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_field<F>(f: &mut F, node: Field) -> Field$/;"	f
fold_field_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_field_mutability(&mut self, i: FieldMutability) -> FieldMutability {$/;"	P	interface:Fold
fold_field_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_field_mutability<F>(f: &mut F, node: FieldMutability) -> FieldMutability$/;"	f
fold_field_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_field_pat(&mut self, i: FieldPat) -> FieldPat {$/;"	P	interface:Fold
fold_field_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_field_pat<F>(f: &mut F, node: FieldPat) -> FieldPat$/;"	f
fold_field_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_field_value(&mut self, i: FieldValue) -> FieldValue {$/;"	P	interface:Fold
fold_field_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_field_value<F>(f: &mut F, node: FieldValue) -> FieldValue$/;"	f
fold_fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_fields(&mut self, i: Fields) -> Fields {$/;"	P	interface:Fold
fold_fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_fields<F>(f: &mut F, node: Fields) -> Fields$/;"	f
fold_fields_named	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_fields_named(&mut self, i: FieldsNamed) -> FieldsNamed {$/;"	P	interface:Fold
fold_fields_named	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_fields_named<F>(f: &mut F, node: FieldsNamed) -> FieldsNamed$/;"	f
fold_fields_unnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_fields_unnamed(&mut self, i: FieldsUnnamed) -> FieldsUnnamed {$/;"	P	interface:Fold
fold_fields_unnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_fields_unnamed<F>(f: &mut F, node: FieldsUnnamed) -> FieldsUnnamed$/;"	f
fold_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_file(&mut self, i: File) -> File {$/;"	P	interface:Fold
fold_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_file<F>(f: &mut F, node: File) -> File$/;"	f
fold_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_fn_arg(&mut self, i: FnArg) -> FnArg {$/;"	P	interface:Fold
fold_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_fn_arg<F>(f: &mut F, node: FnArg) -> FnArg$/;"	f
fold_foreign_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_foreign_item(&mut self, i: ForeignItem) -> ForeignItem {$/;"	P	interface:Fold
fold_foreign_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_foreign_item<F>(f: &mut F, node: ForeignItem) -> ForeignItem$/;"	f
fold_foreign_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_foreign_item_fn(&mut self, i: ForeignItemFn) -> ForeignItemFn {$/;"	P	interface:Fold
fold_foreign_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_foreign_item_fn<F>(f: &mut F, node: ForeignItemFn) -> ForeignItemFn$/;"	f
fold_foreign_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_foreign_item_macro(&mut self, i: ForeignItemMacro) -> ForeignItemMacro {$/;"	P	interface:Fold
fold_foreign_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_foreign_item_macro<F>(f: &mut F, node: ForeignItemMacro) -> ForeignItemMacro$/;"	f
fold_foreign_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_foreign_item_static(&mut self, i: ForeignItemStatic) -> ForeignItemStatic {$/;"	P	interface:Fold
fold_foreign_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_foreign_item_static<F>($/;"	f
fold_foreign_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_foreign_item_type(&mut self, i: ForeignItemType) -> ForeignItemType {$/;"	P	interface:Fold
fold_foreign_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_foreign_item_type<F>(f: &mut F, node: ForeignItemType) -> ForeignItemType$/;"	f
fold_generic_argument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_generic_argument(&mut self, i: GenericArgument) -> GenericArgument {$/;"	P	interface:Fold
fold_generic_argument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_generic_argument<F>(f: &mut F, node: GenericArgument) -> GenericArgument$/;"	f
fold_generic_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_generic_param(&mut self, i: GenericParam) -> GenericParam {$/;"	P	interface:Fold
fold_generic_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_generic_param<F>(f: &mut F, node: GenericParam) -> GenericParam$/;"	f
fold_generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_generics(&mut self, i: Generics) -> Generics {$/;"	P	interface:Fold
fold_generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_generics<F>(f: &mut F, node: Generics) -> Generics$/;"	f
fold_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_ident(&mut self, i: Ident) -> Ident {$/;"	P	interface:Fold
fold_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_ident<F>(f: &mut F, node: Ident) -> Ident$/;"	f
fold_impl_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_impl_item(&mut self, i: ImplItem) -> ImplItem {$/;"	P	interface:Fold
fold_impl_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_impl_item<F>(f: &mut F, node: ImplItem) -> ImplItem$/;"	f
fold_impl_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_impl_item_const(&mut self, i: ImplItemConst) -> ImplItemConst {$/;"	P	interface:Fold
fold_impl_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_impl_item_const<F>(f: &mut F, node: ImplItemConst) -> ImplItemConst$/;"	f
fold_impl_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_impl_item_fn(&mut self, i: ImplItemFn) -> ImplItemFn {$/;"	P	interface:Fold
fold_impl_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_impl_item_fn<F>(f: &mut F, node: ImplItemFn) -> ImplItemFn$/;"	f
fold_impl_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_impl_item_macro(&mut self, i: ImplItemMacro) -> ImplItemMacro {$/;"	P	interface:Fold
fold_impl_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_impl_item_macro<F>(f: &mut F, node: ImplItemMacro) -> ImplItemMacro$/;"	f
fold_impl_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_impl_item_type(&mut self, i: ImplItemType) -> ImplItemType {$/;"	P	interface:Fold
fold_impl_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_impl_item_type<F>(f: &mut F, node: ImplItemType) -> ImplItemType$/;"	f
fold_impl_restriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_impl_restriction(&mut self, i: ImplRestriction) -> ImplRestriction {$/;"	P	interface:Fold
fold_impl_restriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_impl_restriction<F>(f: &mut F, node: ImplRestriction) -> ImplRestriction$/;"	f
fold_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_index(&mut self, i: Index) -> Index {$/;"	P	interface:Fold
fold_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_index<F>(f: &mut F, node: Index) -> Index$/;"	f
fold_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item(&mut self, i: Item) -> Item {$/;"	P	interface:Fold
fold_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item<F>(f: &mut F, node: Item) -> Item$/;"	f
fold_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_const(&mut self, i: ItemConst) -> ItemConst {$/;"	P	interface:Fold
fold_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_const<F>(f: &mut F, node: ItemConst) -> ItemConst$/;"	f
fold_item_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_enum(&mut self, i: ItemEnum) -> ItemEnum {$/;"	P	interface:Fold
fold_item_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_enum<F>(f: &mut F, node: ItemEnum) -> ItemEnum$/;"	f
fold_item_extern_crate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_extern_crate(&mut self, i: ItemExternCrate) -> ItemExternCrate {$/;"	P	interface:Fold
fold_item_extern_crate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_extern_crate<F>(f: &mut F, node: ItemExternCrate) -> ItemExternCrate$/;"	f
fold_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_fn(&mut self, i: ItemFn) -> ItemFn {$/;"	P	interface:Fold
fold_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_fn<F>(f: &mut F, node: ItemFn) -> ItemFn$/;"	f
fold_item_foreign_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_foreign_mod(&mut self, i: ItemForeignMod) -> ItemForeignMod {$/;"	P	interface:Fold
fold_item_foreign_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_foreign_mod<F>(f: &mut F, node: ItemForeignMod) -> ItemForeignMod$/;"	f
fold_item_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_impl(&mut self, i: ItemImpl) -> ItemImpl {$/;"	P	interface:Fold
fold_item_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_impl<F>(f: &mut F, node: ItemImpl) -> ItemImpl$/;"	f
fold_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_macro(&mut self, i: ItemMacro) -> ItemMacro {$/;"	P	interface:Fold
fold_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_macro<F>(f: &mut F, node: ItemMacro) -> ItemMacro$/;"	f
fold_item_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_mod(&mut self, i: ItemMod) -> ItemMod {$/;"	P	interface:Fold
fold_item_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_mod<F>(f: &mut F, node: ItemMod) -> ItemMod$/;"	f
fold_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_static(&mut self, i: ItemStatic) -> ItemStatic {$/;"	P	interface:Fold
fold_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_static<F>(f: &mut F, node: ItemStatic) -> ItemStatic$/;"	f
fold_item_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_struct(&mut self, i: ItemStruct) -> ItemStruct {$/;"	P	interface:Fold
fold_item_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_struct<F>(f: &mut F, node: ItemStruct) -> ItemStruct$/;"	f
fold_item_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_trait(&mut self, i: ItemTrait) -> ItemTrait {$/;"	P	interface:Fold
fold_item_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_trait<F>(f: &mut F, node: ItemTrait) -> ItemTrait$/;"	f
fold_item_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_trait_alias(&mut self, i: ItemTraitAlias) -> ItemTraitAlias {$/;"	P	interface:Fold
fold_item_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_trait_alias<F>(f: &mut F, node: ItemTraitAlias) -> ItemTraitAlias$/;"	f
fold_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_type(&mut self, i: ItemType) -> ItemType {$/;"	P	interface:Fold
fold_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_type<F>(f: &mut F, node: ItemType) -> ItemType$/;"	f
fold_item_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_union(&mut self, i: ItemUnion) -> ItemUnion {$/;"	P	interface:Fold
fold_item_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_union<F>(f: &mut F, node: ItemUnion) -> ItemUnion$/;"	f
fold_item_use	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_item_use(&mut self, i: ItemUse) -> ItemUse {$/;"	P	interface:Fold
fold_item_use	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_item_use<F>(f: &mut F, node: ItemUse) -> ItemUse$/;"	f
fold_label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_label(&mut self, i: Label) -> Label {$/;"	P	interface:Fold
fold_label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_label<F>(f: &mut F, node: Label) -> Label$/;"	f
fold_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lifetime(&mut self, i: Lifetime) -> Lifetime {$/;"	P	interface:Fold
fold_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lifetime<F>(f: &mut F, node: Lifetime) -> Lifetime$/;"	f
fold_lifetime_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lifetime_param(&mut self, i: LifetimeParam) -> LifetimeParam {$/;"	P	interface:Fold
fold_lifetime_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lifetime_param<F>(f: &mut F, node: LifetimeParam) -> LifetimeParam$/;"	f
fold_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit(&mut self, i: Lit) -> Lit {$/;"	P	interface:Fold
fold_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit<F>(f: &mut F, node: Lit) -> Lit$/;"	f
fold_lit_bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_bool(&mut self, i: LitBool) -> LitBool {$/;"	P	interface:Fold
fold_lit_bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_bool<F>(f: &mut F, node: LitBool) -> LitBool$/;"	f
fold_lit_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_byte(&mut self, i: LitByte) -> LitByte {$/;"	P	interface:Fold
fold_lit_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_byte<F>(f: &mut F, node: LitByte) -> LitByte$/;"	f
fold_lit_byte_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_byte_str(&mut self, i: LitByteStr) -> LitByteStr {$/;"	P	interface:Fold
fold_lit_byte_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_byte_str<F>(f: &mut F, node: LitByteStr) -> LitByteStr$/;"	f
fold_lit_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_char(&mut self, i: LitChar) -> LitChar {$/;"	P	interface:Fold
fold_lit_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_char<F>(f: &mut F, node: LitChar) -> LitChar$/;"	f
fold_lit_float	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_float(&mut self, i: LitFloat) -> LitFloat {$/;"	P	interface:Fold
fold_lit_float	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_float<F>(f: &mut F, node: LitFloat) -> LitFloat$/;"	f
fold_lit_int	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_int(&mut self, i: LitInt) -> LitInt {$/;"	P	interface:Fold
fold_lit_int	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_int<F>(f: &mut F, node: LitInt) -> LitInt$/;"	f
fold_lit_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_lit_str(&mut self, i: LitStr) -> LitStr {$/;"	P	interface:Fold
fold_lit_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_lit_str<F>(f: &mut F, node: LitStr) -> LitStr$/;"	f
fold_local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_local(&mut self, i: Local) -> Local {$/;"	P	interface:Fold
fold_local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_local<F>(f: &mut F, node: Local) -> Local$/;"	f
fold_local_init	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_local_init(&mut self, i: LocalInit) -> LocalInit {$/;"	P	interface:Fold
fold_local_init	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_local_init<F>(f: &mut F, node: LocalInit) -> LocalInit$/;"	f
fold_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_macro(&mut self, i: Macro) -> Macro {$/;"	P	interface:Fold
fold_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_macro<F>(f: &mut F, node: Macro) -> Macro$/;"	f
fold_macro_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_macro_delimiter(&mut self, i: MacroDelimiter) -> MacroDelimiter {$/;"	P	interface:Fold
fold_macro_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_macro_delimiter<F>(f: &mut F, node: MacroDelimiter) -> MacroDelimiter$/;"	f
fold_member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_member(&mut self, i: Member) -> Member {$/;"	P	interface:Fold
fold_member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_member<F>(f: &mut F, node: Member) -> Member$/;"	f
fold_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_meta(&mut self, i: Meta) -> Meta {$/;"	P	interface:Fold
fold_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_meta<F>(f: &mut F, node: Meta) -> Meta$/;"	f
fold_meta_list	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_meta_list(&mut self, i: MetaList) -> MetaList {$/;"	P	interface:Fold
fold_meta_list	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_meta_list<F>(f: &mut F, node: MetaList) -> MetaList$/;"	f
fold_meta_name_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_meta_name_value(&mut self, i: MetaNameValue) -> MetaNameValue {$/;"	P	interface:Fold
fold_meta_name_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_meta_name_value<F>(f: &mut F, node: MetaNameValue) -> MetaNameValue$/;"	f
fold_parenthesized_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_parenthesized_generic_arguments($/;"	P	interface:Fold
fold_parenthesized_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_parenthesized_generic_arguments<F>($/;"	f
fold_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat(&mut self, i: Pat) -> Pat {$/;"	P	interface:Fold
fold_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat<F>(f: &mut F, node: Pat) -> Pat$/;"	f
fold_pat_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_ident(&mut self, i: PatIdent) -> PatIdent {$/;"	P	interface:Fold
fold_pat_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_ident<F>(f: &mut F, node: PatIdent) -> PatIdent$/;"	f
fold_pat_or	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_or(&mut self, i: PatOr) -> PatOr {$/;"	P	interface:Fold
fold_pat_or	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_or<F>(f: &mut F, node: PatOr) -> PatOr$/;"	f
fold_pat_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_paren(&mut self, i: PatParen) -> PatParen {$/;"	P	interface:Fold
fold_pat_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_paren<F>(f: &mut F, node: PatParen) -> PatParen$/;"	f
fold_pat_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_reference(&mut self, i: PatReference) -> PatReference {$/;"	P	interface:Fold
fold_pat_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_reference<F>(f: &mut F, node: PatReference) -> PatReference$/;"	f
fold_pat_rest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_rest(&mut self, i: PatRest) -> PatRest {$/;"	P	interface:Fold
fold_pat_rest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_rest<F>(f: &mut F, node: PatRest) -> PatRest$/;"	f
fold_pat_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_slice(&mut self, i: PatSlice) -> PatSlice {$/;"	P	interface:Fold
fold_pat_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_slice<F>(f: &mut F, node: PatSlice) -> PatSlice$/;"	f
fold_pat_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_struct(&mut self, i: PatStruct) -> PatStruct {$/;"	P	interface:Fold
fold_pat_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_struct<F>(f: &mut F, node: PatStruct) -> PatStruct$/;"	f
fold_pat_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_tuple(&mut self, i: PatTuple) -> PatTuple {$/;"	P	interface:Fold
fold_pat_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_tuple<F>(f: &mut F, node: PatTuple) -> PatTuple$/;"	f
fold_pat_tuple_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_tuple_struct(&mut self, i: PatTupleStruct) -> PatTupleStruct {$/;"	P	interface:Fold
fold_pat_tuple_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_tuple_struct<F>(f: &mut F, node: PatTupleStruct) -> PatTupleStruct$/;"	f
fold_pat_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_type(&mut self, i: PatType) -> PatType {$/;"	P	interface:Fold
fold_pat_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_type<F>(f: &mut F, node: PatType) -> PatType$/;"	f
fold_pat_wild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_pat_wild(&mut self, i: PatWild) -> PatWild {$/;"	P	interface:Fold
fold_pat_wild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_pat_wild<F>(f: &mut F, node: PatWild) -> PatWild$/;"	f
fold_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_path(&mut self, i: Path) -> Path {$/;"	P	interface:Fold
fold_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_path<F>(f: &mut F, node: Path) -> Path$/;"	f
fold_path_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_path_arguments(&mut self, i: PathArguments) -> PathArguments {$/;"	P	interface:Fold
fold_path_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_path_arguments<F>(f: &mut F, node: PathArguments) -> PathArguments$/;"	f
fold_path_segment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_path_segment(&mut self, i: PathSegment) -> PathSegment {$/;"	P	interface:Fold
fold_path_segment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_path_segment<F>(f: &mut F, node: PathSegment) -> PathSegment$/;"	f
fold_predicate_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_predicate_lifetime(&mut self, i: PredicateLifetime) -> PredicateLifetime {$/;"	P	interface:Fold
fold_predicate_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_predicate_lifetime<F>($/;"	f
fold_predicate_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_predicate_type(&mut self, i: PredicateType) -> PredicateType {$/;"	P	interface:Fold
fold_predicate_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_predicate_type<F>(f: &mut F, node: PredicateType) -> PredicateType$/;"	f
fold_qself	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_qself(&mut self, i: QSelf) -> QSelf {$/;"	P	interface:Fold
fold_qself	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_qself<F>(f: &mut F, node: QSelf) -> QSelf$/;"	f
fold_range_limits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_range_limits(&mut self, i: RangeLimits) -> RangeLimits {$/;"	P	interface:Fold
fold_range_limits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_range_limits<F>(f: &mut F, node: RangeLimits) -> RangeLimits$/;"	f
fold_receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_receiver(&mut self, i: Receiver) -> Receiver {$/;"	P	interface:Fold
fold_receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_receiver<F>(f: &mut F, node: Receiver) -> Receiver$/;"	f
fold_return_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_return_type(&mut self, i: ReturnType) -> ReturnType {$/;"	P	interface:Fold
fold_return_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_return_type<F>(f: &mut F, node: ReturnType) -> ReturnType$/;"	f
fold_signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_signature(&mut self, i: Signature) -> Signature {$/;"	P	interface:Fold
fold_signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_signature<F>(f: &mut F, node: Signature) -> Signature$/;"	f
fold_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_span(&mut self, i: Span) -> Span {$/;"	P	interface:Fold
fold_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_span<F>(f: &mut F, node: Span) -> Span$/;"	f
fold_static_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_static_mutability(&mut self, i: StaticMutability) -> StaticMutability {$/;"	P	interface:Fold
fold_static_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_static_mutability<F>(f: &mut F, node: StaticMutability) -> StaticMutability$/;"	f
fold_stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_stmt(&mut self, i: Stmt) -> Stmt {$/;"	P	interface:Fold
fold_stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_stmt<F>(f: &mut F, node: Stmt) -> Stmt$/;"	f
fold_stmt_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_stmt_macro(&mut self, i: StmtMacro) -> StmtMacro {$/;"	P	interface:Fold
fold_stmt_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_stmt_macro<F>(f: &mut F, node: StmtMacro) -> StmtMacro$/;"	f
fold_trait_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_bound(&mut self, i: TraitBound) -> TraitBound {$/;"	P	interface:Fold
fold_trait_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_bound<F>(f: &mut F, node: TraitBound) -> TraitBound$/;"	f
fold_trait_bound_modifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_bound_modifier($/;"	P	interface:Fold
fold_trait_bound_modifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_bound_modifier<F>($/;"	f
fold_trait_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_item(&mut self, i: TraitItem) -> TraitItem {$/;"	P	interface:Fold
fold_trait_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_item<F>(f: &mut F, node: TraitItem) -> TraitItem$/;"	f
fold_trait_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_item_const(&mut self, i: TraitItemConst) -> TraitItemConst {$/;"	P	interface:Fold
fold_trait_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_item_const<F>(f: &mut F, node: TraitItemConst) -> TraitItemConst$/;"	f
fold_trait_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_item_fn(&mut self, i: TraitItemFn) -> TraitItemFn {$/;"	P	interface:Fold
fold_trait_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_item_fn<F>(f: &mut F, node: TraitItemFn) -> TraitItemFn$/;"	f
fold_trait_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_item_macro(&mut self, i: TraitItemMacro) -> TraitItemMacro {$/;"	P	interface:Fold
fold_trait_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_item_macro<F>(f: &mut F, node: TraitItemMacro) -> TraitItemMacro$/;"	f
fold_trait_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_trait_item_type(&mut self, i: TraitItemType) -> TraitItemType {$/;"	P	interface:Fold
fold_trait_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_trait_item_type<F>(f: &mut F, node: TraitItemType) -> TraitItemType$/;"	f
fold_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type(&mut self, i: Type) -> Type {$/;"	P	interface:Fold
fold_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type<F>(f: &mut F, node: Type) -> Type$/;"	f
fold_type_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_array(&mut self, i: TypeArray) -> TypeArray {$/;"	P	interface:Fold
fold_type_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_array<F>(f: &mut F, node: TypeArray) -> TypeArray$/;"	f
fold_type_bare_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_bare_fn(&mut self, i: TypeBareFn) -> TypeBareFn {$/;"	P	interface:Fold
fold_type_bare_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_bare_fn<F>(f: &mut F, node: TypeBareFn) -> TypeBareFn$/;"	f
fold_type_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_group(&mut self, i: TypeGroup) -> TypeGroup {$/;"	P	interface:Fold
fold_type_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_group<F>(f: &mut F, node: TypeGroup) -> TypeGroup$/;"	f
fold_type_impl_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_impl_trait(&mut self, i: TypeImplTrait) -> TypeImplTrait {$/;"	P	interface:Fold
fold_type_impl_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_impl_trait<F>(f: &mut F, node: TypeImplTrait) -> TypeImplTrait$/;"	f
fold_type_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_infer(&mut self, i: TypeInfer) -> TypeInfer {$/;"	P	interface:Fold
fold_type_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_infer<F>(f: &mut F, node: TypeInfer) -> TypeInfer$/;"	f
fold_type_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_macro(&mut self, i: TypeMacro) -> TypeMacro {$/;"	P	interface:Fold
fold_type_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_macro<F>(f: &mut F, node: TypeMacro) -> TypeMacro$/;"	f
fold_type_never	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_never(&mut self, i: TypeNever) -> TypeNever {$/;"	P	interface:Fold
fold_type_never	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_never<F>(f: &mut F, node: TypeNever) -> TypeNever$/;"	f
fold_type_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_param(&mut self, i: TypeParam) -> TypeParam {$/;"	P	interface:Fold
fold_type_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_param<F>(f: &mut F, node: TypeParam) -> TypeParam$/;"	f
fold_type_param_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_param_bound(&mut self, i: TypeParamBound) -> TypeParamBound {$/;"	P	interface:Fold
fold_type_param_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_param_bound<F>(f: &mut F, node: TypeParamBound) -> TypeParamBound$/;"	f
fold_type_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_paren(&mut self, i: TypeParen) -> TypeParen {$/;"	P	interface:Fold
fold_type_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_paren<F>(f: &mut F, node: TypeParen) -> TypeParen$/;"	f
fold_type_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_path(&mut self, i: TypePath) -> TypePath {$/;"	P	interface:Fold
fold_type_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_path<F>(f: &mut F, node: TypePath) -> TypePath$/;"	f
fold_type_ptr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_ptr(&mut self, i: TypePtr) -> TypePtr {$/;"	P	interface:Fold
fold_type_ptr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_ptr<F>(f: &mut F, node: TypePtr) -> TypePtr$/;"	f
fold_type_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_reference(&mut self, i: TypeReference) -> TypeReference {$/;"	P	interface:Fold
fold_type_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_reference<F>(f: &mut F, node: TypeReference) -> TypeReference$/;"	f
fold_type_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_slice(&mut self, i: TypeSlice) -> TypeSlice {$/;"	P	interface:Fold
fold_type_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_slice<F>(f: &mut F, node: TypeSlice) -> TypeSlice$/;"	f
fold_type_trait_object	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_trait_object(&mut self, i: TypeTraitObject) -> TypeTraitObject {$/;"	P	interface:Fold
fold_type_trait_object	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_trait_object<F>(f: &mut F, node: TypeTraitObject) -> TypeTraitObject$/;"	f
fold_type_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_type_tuple(&mut self, i: TypeTuple) -> TypeTuple {$/;"	P	interface:Fold
fold_type_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_type_tuple<F>(f: &mut F, node: TypeTuple) -> TypeTuple$/;"	f
fold_un_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_un_op(&mut self, i: UnOp) -> UnOp {$/;"	P	interface:Fold
fold_un_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_un_op<F>(f: &mut F, node: UnOp) -> UnOp$/;"	f
fold_use_glob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_use_glob(&mut self, i: UseGlob) -> UseGlob {$/;"	P	interface:Fold
fold_use_glob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_use_glob<F>(f: &mut F, node: UseGlob) -> UseGlob$/;"	f
fold_use_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_use_group(&mut self, i: UseGroup) -> UseGroup {$/;"	P	interface:Fold
fold_use_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_use_group<F>(f: &mut F, node: UseGroup) -> UseGroup$/;"	f
fold_use_name	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_use_name(&mut self, i: UseName) -> UseName {$/;"	P	interface:Fold
fold_use_name	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_use_name<F>(f: &mut F, node: UseName) -> UseName$/;"	f
fold_use_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_use_path(&mut self, i: UsePath) -> UsePath {$/;"	P	interface:Fold
fold_use_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_use_path<F>(f: &mut F, node: UsePath) -> UsePath$/;"	f
fold_use_rename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_use_rename(&mut self, i: UseRename) -> UseRename {$/;"	P	interface:Fold
fold_use_rename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_use_rename<F>(f: &mut F, node: UseRename) -> UseRename$/;"	f
fold_use_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_use_tree(&mut self, i: UseTree) -> UseTree {$/;"	P	interface:Fold
fold_use_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_use_tree<F>(f: &mut F, node: UseTree) -> UseTree$/;"	f
fold_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_variadic(&mut self, i: Variadic) -> Variadic {$/;"	P	interface:Fold
fold_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_variadic<F>(f: &mut F, node: Variadic) -> Variadic$/;"	f
fold_variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_variant(&mut self, i: Variant) -> Variant {$/;"	P	interface:Fold
fold_variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_variant<F>(f: &mut F, node: Variant) -> Variant$/;"	f
fold_vis_restricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_vis_restricted(&mut self, i: VisRestricted) -> VisRestricted {$/;"	P	interface:Fold
fold_vis_restricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_vis_restricted<F>(f: &mut F, node: VisRestricted) -> VisRestricted$/;"	f
fold_visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_visibility(&mut self, i: Visibility) -> Visibility {$/;"	P	interface:Fold
fold_visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_visibility<F>(f: &mut F, node: Visibility) -> Visibility$/;"	f
fold_where_clause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_where_clause(&mut self, i: WhereClause) -> WhereClause {$/;"	P	interface:Fold
fold_where_clause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_where_clause<F>(f: &mut F, node: WhereClause) -> WhereClause$/;"	f
fold_where_predicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^    fn fold_where_predicate(&mut self, i: WherePredicate) -> WherePredicate {$/;"	P	interface:Fold
fold_where_predicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^pub fn fold_where_predicate<F>(f: &mut F, node: WherePredicate) -> WherePredicate$/;"	f
force	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub fn force() {$/;"	f
force_fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^pub(crate) fn force_fallback() {$/;"	f
foreignkey	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/suffix/mod.rs	/^pub mod foreignkey;$/;"	n
fork	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn fork(&self) -> Self {$/;"	P	implementation:ParseBuffer
format	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^mod format;$/;"	n
format_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/format.rs	/^macro_rules! format_ident {$/;"	M
format_ident_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/format.rs	/^macro_rules! format_ident_impl {$/;"	M
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from(inner: TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from(inner: proc_macro::TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from(tree: TokenTree) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(g: Group) -> Self {$/;"	P	implementation:TokenTree
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(g: Ident) -> Self {$/;"	P	implementation:TokenTree
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(g: Literal) -> Self {$/;"	P	implementation:TokenTree
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(g: Punct) -> Self {$/;"	P	implementation:TokenTree
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(inner: TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(inner: proc_macro::TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from(token: TokenTree) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(e: fallback::LexError) -> Self {$/;"	P	implementation:LexError
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(e: proc_macro::LexError) -> Self {$/;"	P	implementation:LexError
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(g: fallback::Group) -> Self {$/;"	P	implementation:Group
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(inner: TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(inner: fallback::Span) -> Self {$/;"	P	implementation:Span
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(inner: fallback::TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(inner: proc_macro::TokenStream) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(proc_span: proc_macro::Span) -> Self {$/;"	P	implementation:Span
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(s: fallback::Literal) -> Self {$/;"	P	implementation:Literal
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from(token: TokenTree) -> Self {$/;"	P	implementation:TokenStream
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn from(err: LexError) -> Self {$/;"	P	implementation:Error
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn from(ident: Ident) -> Member {$/;"	P	implementation:Member
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn from(index: Index) -> Member {$/;"	P	implementation:Member
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn from(index: usize) -> Index {$/;"	P	implementation:Index
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn from(index: usize) -> Member {$/;"	P	implementation:Member
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn from(ident: Ident) -> Self {$/;"	P	implementation:TypeParam
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^    fn from(token: Token![_]) -> Ident {$/;"	P	implementation:Ident
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn from(input: DeriveInput) -> Item {$/;"	P	implementation:Item
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn from(input: ItemEnum) -> DeriveInput {$/;"	P	implementation:DeriveInput
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn from(input: ItemStruct) -> DeriveInput {$/;"	P	implementation:DeriveInput
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn from(input: ItemUnion) -> DeriveInput {$/;"	P	implementation:DeriveInput
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn from(token: Literal) -> Self {$/;"	P	implementation:LitFloat
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn from(token: Literal) -> Self {$/;"	P	implementation:LitInt
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    fn from(ident: T) -> Self {$/;"	f
from	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    fn from(segment: T) -> Self {$/;"	f
from	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    fn from(db_type: &str) -> Self {$/;"	P	implementation:DbType
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_camel_case() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_case_with_loads_of_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_case_with_loads_of_space() {$/;"	f	module:tests
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from_iter<I: IntoIterator<Item = TokenStream>>(streams: I) -> Self {$/;"	P	implementation:TokenStream
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from_iter<I: IntoIterator<Item = TokenTree>>(tokens: I) -> Self {$/;"	P	implementation:TokenStream
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from_iter<I: IntoIterator<Item = TokenStream>>(streams: I) -> Self {$/;"	P	implementation:TokenStream
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from_iter<I: IntoIterator<Item = TokenTree>>(streams: I) -> Self {$/;"	P	implementation:TokenStream
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from_iter<I: IntoIterator<Item = TokenStream>>(streams: I) -> Self {$/;"	P	implementation:TokenStream
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from_iter<I: IntoIterator<Item = TokenTree>>(trees: I) -> Self {$/;"	P	implementation:TokenStream
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn from_iter<I: IntoIterator<Item = Pair<T, P>>>(i: I) -> Self {$/;"	P	implementation:Punctuated
from_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn from_iter<I: IntoIterator<Item = T>>(i: I) -> Self {$/;"	f
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_kebab_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_pascal_case() {$/;"	f	module:tests
from_screaming_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_screaming_class_case() {$/;"	f	module:tests
from_screaming_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_screaming_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_screaming_snake_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_sentence_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_snake_case() {$/;"	f	module:tests
from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from_str(repr: &str) -> Result<Self, Self::Err> {$/;"	P	implementation:Literal::byte_string::Literal
from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn from_str(src: &str) -> Result<TokenStream, LexError> {$/;"	P	implementation:TokenStream
from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from_str(repr: &str) -> Result<Self, LexError> {$/;"	P	implementation:Literal
from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn from_str(src: &str) -> Result<TokenStream, LexError> {$/;"	P	implementation:TokenStream
from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from_str(repr: &str) -> Result<Self, Self::Err> {$/;"	P	implementation:Literal
from_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn from_str(src: &str) -> Result<TokenStream, LexError> {$/;"	P	implementation:TokenStream
from_str_unchecked	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) unsafe fn from_str_unchecked(repr: &str) -> Self {$/;"	P	implementation:Literal
from_str_unchecked	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub unsafe fn from_str_unchecked(repr: &str) -> Self {$/;"	P	implementation:Literal
from_str_unchecked	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub unsafe fn from_str_unchecked(repr: &str) -> Self {$/;"	P	implementation:Literal
from_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_table_case() {$/;"	f	module:tests
from_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_table_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_title_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn from_train_case() {$/;"	f	module:tests
full	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/fold.rs	/^macro_rules! full {$/;"	M
full	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^macro_rules! full {$/;"	M
full	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^macro_rules! full {$/;"	M
gen	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod gen {$/;"	n
generate_to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! generate_to_tokens {$/;"	M
generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        generics: Generics,$/;"	m	struct:parsing::FlexibleItemType
generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod generics;$/;"	n
generics_wrapper_impls	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^macro_rules! generics_wrapper_impls {$/;"	M
get	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^    pub(crate) fn get(&self) -> Option<&T> {$/;"	P	implementation:ThreadBound
get_cursor	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^fn get_cursor(src: &str) -> Cursor {$/;"	f
get_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub fn get_ident(&self) -> Option<&Ident> {$/;"	P	implementation:Path
get_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn get_mut(&mut self) -> Option<RcVecMut<T>> {$/;"	P	implementation:RcVec
get_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^mod get_span {$/;"	n
get_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn get_span<T>(span: T) -> GetSpan<T> {$/;"	f
get_unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub(crate) fn get_unexpected(buffer: &ParseBuffer) -> Rc<Cell<Unexpected>> {$/;"	f
group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn group(mut self, delim: Delimiter) -> Option<(Cursor<'a>, DelimSpan, Cursor<'a>)> {$/;"	P	implementation:Cursor
group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod group;$/;"	n
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_a_sign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn has_a_sign() {$/;"	f	module:tests
has_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^    pub has_seperator: bool,$/;"	m	struct:CamelOptions
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn hash<H: Hasher>(&self, hasher: &mut H) {$/;"	P	implementation:Ident
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn hash<H: Hasher>(&self, state: &mut H) {$/;"	P	implementation:Index
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn hash<H: Hasher>(&self, state: &mut H) {$/;"	P	implementation:Member
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, _state: &mut H)$/;"	P	implementation:ImplRestriction
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, _state: &mut H)$/;"	P	implementation:TypeInfer
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, _state: &mut H)$/;"	P	implementation:TypeNever
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, _state: &mut H)$/;"	P	implementation:UseGlob
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Abi
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:AngleBracketedGenericArguments
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Arm
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:AssocConst
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:AssocType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:AttrStyle
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Attribute
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:BareFnArg
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:BareVariadic
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:BinOp
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Block
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:BoundLifetimes
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ConstParam
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Constraint
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Data
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:DataEnum
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:DataStruct
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:DataUnion
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:DeriveInput
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Expr
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprArray
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprAssign
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprAsync
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprAwait
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprBinary
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprBlock
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprBreak
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprCall
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprCast
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprClosure
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprConst
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprContinue
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprField
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprForLoop
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprGroup
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprIf
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprIndex
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprInfer
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprLet
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprLit
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprLoop
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprMatch
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprMethodCall
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprParen
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprPath
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprRange
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprReference
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprRepeat
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprReturn
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprStruct
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprTry
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprTryBlock
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprTuple
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprUnary
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprUnsafe
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprWhile
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ExprYield
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Field
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:FieldMutability
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:FieldPat
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:FieldValue
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Fields
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:FieldsNamed
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:FieldsUnnamed
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:File
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:FnArg
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ForeignItem
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ForeignItemFn
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ForeignItemMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ForeignItemStatic
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ForeignItemType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:GenericArgument
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:GenericParam
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Generics
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ImplItem
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ImplItemConst
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ImplItemFn
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ImplItemMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ImplItemType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Item
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemConst
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemEnum
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemExternCrate
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemFn
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemForeignMod
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemImpl
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemMod
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemStatic
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemStruct
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemTrait
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemTraitAlias
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemUnion
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ItemUse
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Label
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:LifetimeParam
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Lit
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:LitBool
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Local
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:LocalInit
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Macro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:MacroDelimiter
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Meta
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:MetaList
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:MetaNameValue
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ParenthesizedGenericArguments
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Pat
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatIdent
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatOr
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatParen
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatReference
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatRest
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatSlice
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatStruct
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatTuple
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatTupleStruct
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PatWild
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Path
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PathArguments
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PathSegment
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PredicateLifetime
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:PredicateType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:QSelf
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:RangeLimits
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Receiver
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:ReturnType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Signature
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:StaticMutability
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Stmt
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:StmtMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitBound
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitBoundModifier
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitItem
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitItemConst
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitItemFn
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitItemMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TraitItemType
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Type
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeArray
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeBareFn
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeGroup
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeImplTrait
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeMacro
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeParam
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeParamBound
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeParen
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypePath
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypePtr
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeReference
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeSlice
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeTraitObject
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:TypeTuple
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:UnOp
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:UseGroup
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:UseName
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:UsePath
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:UseRename
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:UseTree
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Variadic
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Variant
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:VisRestricted
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:Visibility
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:WhereClause
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/hash.rs	/^    fn hash<H>(&self, state: &mut H)$/;"	P	implementation:WherePredicate
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    mod hash;$/;"	n	module:gen
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    fn hash<H: Hasher>(&self, h: &mut H) {$/;"	P	implementation:Lifetime
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn hash<H: Hasher>(&self, _state: &mut H) {}$/;"	P	implementation:Nothing
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn hash<H: Hasher>(&self, state: &mut H) {$/;"	f
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn hash<H: Hasher>(&self, _state: &mut H) {}$/;"	P	implementation:Group
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^    fn hash<H: Hasher>(&self, h: &mut H) {$/;"	P	implementation:TokenTreeHelper
hash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/tt.rs	/^    fn hash<H: Hasher>(&self, state: &mut H) {$/;"	P	implementation:TokenStreamHelper
help	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/export.rs	/^mod help {$/;"	n
helper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    mod helper;$/;"	n	module:gen
hi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) hi: u32,$/;"	m	struct:Span
id_column_ident	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    id_column_ident: Ident,$/;"	m	struct:Config
ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn ident(input: Cursor) -> PResult<crate::Ident> {$/;"	f
ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn ident(mut self) -> Option<(Ident, Cursor<'a>)> {$/;"	P	implementation:Cursor
ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        ident: Ident,$/;"	m	struct:parsing::FlexibleItemType
ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod ident;$/;"	n
ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    pub ident: Ident,$/;"	m	struct:Lifetime
ident	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    ident: &'a Ident,$/;"	m	struct:Config
ident_any	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn ident_any(input: Cursor) -> PResult<crate::Ident> {$/;"	f
ident_fragment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^mod ident_fragment;$/;"	n
ident_fragment_display	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^macro_rules! ident_fragment_display {$/;"	M
ident_from_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^macro_rules! ident_from_token {$/;"	M
ident_maybe_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^fn ident_maybe_raw(id: &str, span: Span) -> Ident {$/;"	f
ident_not_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn ident_not_raw(input: Cursor) -> PResult<&str> {$/;"	f
ident_ok	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn ident_ok(string: &str) -> bool {$/;"	f	function:validate_ident
ignore_none	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    fn ignore_none(&mut self) {$/;"	P	implementation:Cursor
imp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod imp;$/;"	n
impl_by_parsing_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    macro_rules! impl_by_parsing_expr {$/;"	M	module:parsing
impl_clone_for_custom_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_keyword.rs	/^macro_rules! impl_clone_for_custom_keyword {$/;"	M
impl_clone_for_custom_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! impl_clone_for_custom_punctuation {$/;"	M
impl_deref_if_len_is_1	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! impl_deref_if_len_is_1 {$/;"	M
impl_extra_traits_for_custom_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_keyword.rs	/^macro_rules! impl_extra_traits_for_custom_keyword {$/;"	M
impl_extra_traits_for_custom_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! impl_extra_traits_for_custom_punctuation {$/;"	M
impl_low_level_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! impl_low_level_token {$/;"	M
impl_parse_for_custom_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_keyword.rs	/^macro_rules! impl_parse_for_custom_keyword {$/;"	M
impl_parse_for_custom_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! impl_parse_for_custom_punctuation {$/;"	M
impl_to_tokens_for_custom_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_keyword.rs	/^macro_rules! impl_to_tokens_for_custom_keyword {$/;"	M
impl_to_tokens_for_custom_punctuation	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! impl_to_tokens_for_custom_punctuation {$/;"	M
impl_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^macro_rules! impl_token {$/;"	M
implement_number_for	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^macro_rules! implement_number_for {$/;"	M
implement_string_for	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^macro_rules! implement_string_for {$/;"	M
index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn index(&self, index: usize) -> &Self::Output {$/;"	P	implementation:Punctuated
index_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn index_mut(&mut self, index: usize) -> &mut Self::Output {$/;"	P	implementation:Punctuated
initialize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^fn initialize() {$/;"	f
injectable_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^    pub injectable_char: char,$/;"	m	struct:CamelOptions
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    inner: DelimSpanEnum,$/;"	m	struct:DelimSpan
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    inner: RcVec<TokenTree>,$/;"	m	struct:TokenStream
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    inner: RcVecBuilder<TokenTree>,$/;"	m	struct:TokenStreamBuilder
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        inner: imp::TokenTreeIter,$/;"	m	struct:token_stream::IntoIter
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::Group,$/;"	m	struct:Group
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::Ident,$/;"	m	struct:Ident
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::LexError,$/;"	m	struct:LexError
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::Literal,$/;"	m	struct:Literal
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::SourceFile,$/;"	m	struct:SourceFile
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::Span,$/;"	m	struct:Span
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    inner: imp::TokenStream,$/;"	m	struct:TokenStream
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    inner: &'a mut Vec<T>,$/;"	m	struct:RcVecMut
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    inner: Rc<Vec<T>>,$/;"	m	struct:RcVec
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    inner: Vec<T>,$/;"	m	struct:RcVecBuilder
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    inner: vec::IntoIter<T>,$/;"	m	struct:RcVecIntoIter
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    fn inner(self) -> Self::Ret {$/;"	P	implementation:Attribute
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    fn inner(self) -> Self::Ret;$/;"	P	interface:FilterAttrs
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: Box<NoDrop<dyn IterMutTrait<'a, T, Item = &'a mut T> + 'a>>,$/;"	m	struct:IterMut
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: Box<NoDrop<dyn IterTrait<'a, T> + 'a>>,$/;"	m	struct:Iter
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: Vec<(T, P)>,$/;"	m	struct:Punctuated
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: slice::Iter<'a, (T, P)>,$/;"	m	struct:Pairs
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: slice::Iter<'a, (T, P)>,$/;"	m	struct:PrivateIter
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: slice::IterMut<'a, (T, P)>,$/;"	m	struct:PairsMut
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: slice::IterMut<'a, (T, P)>,$/;"	m	struct:PrivateIterMut
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: vec::IntoIter<(T, P)>,$/;"	m	struct:IntoPairs
inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    inner: vec::IntoIter<T>,$/;"	m	struct:IntoIter
inner_attrs_to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn inner_attrs_to_tokens(attrs: &[Attribute], tokens: &mut TokenStream) {$/;"	f	module:printing
inner_unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^fn inner_unexpected(buffer: &ParseBuffer) -> (Rc<Cell<Unexpected>>, Option<Span>) {$/;"	f
input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^    pub input: ParseStream<'a>,$/;"	m	struct:ParseNestedMeta
insert	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn insert(&mut self, index: usize, value: T)$/;"	P	implementation:Punctuated
inside_proc_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^pub(crate) fn inside_proc_macro() -> bool {$/;"	f
int	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn int(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
into_compile_error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    pub fn into_compile_error(self) -> TokenStream {$/;"	P	implementation:Error
into_compiler_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^fn into_compiler_token(token: TokenTree) -> proc_macro::TokenTree {$/;"	f
into_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn into_expr(self) -> Box<Expr> {$/;"	P	implementation:parsing::PatRangeBound
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn into_iter(self) -> TokenTreeIter {$/;"	P	implementation:TokenStream
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        fn into_iter(self) -> IntoIter {$/;"	P	implementation:token_stream::TokenStream
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    fn into_iter(self) -> Self::IntoIter {$/;"	P	implementation:RcVecBuilder
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn into_iter(self) -> TokenTreeIter {$/;"	P	implementation:TokenStream
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    fn into_iter(self) -> Self::IntoIter {$/;"	P	implementation:Fields
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn into_iter(self) -> Self::IntoIter {$/;"	P	implementation:Error
into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn into_iter(self) -> Self::IntoIter {$/;"	P	implementation:Punctuated
into_pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn into_pairs(self) -> IntoPairs<T, P> {$/;"	P	implementation:Punctuated
into_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn into_pat(self) -> Pat {$/;"	P	implementation:parsing::PatRangeBound
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    fn into_spans(self) -> S {$/;"	P	implementation:TokenMarker
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> DelimSpan {$/;"	P	implementation:DelimSpan
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> DelimSpan {$/;"	P	implementation:Span
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> S;$/;"	P	interface:IntoSpans
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> Span {$/;"	P	implementation:Span
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> [Span; 1] {$/;"	P	implementation:Span
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> [Span; 2] {$/;"	P	implementation:Span
into_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/span.rs	/^    fn into_spans(self) -> [Span; 3] {$/;"	P	implementation:Span
into_token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn into_token_stream(mut self) -> proc_macro::TokenStream {$/;"	P	implementation:DeferredTokenStream
into_token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn into_token_stream(self) -> TokenStream {$/;"	P	implementation:TokenStream
into_token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn into_token_stream(self) -> TokenStream$/;"	P	interface:ToTokens
into_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn into_tuple(self) -> (T, Option<P>) {$/;"	P	implementation:Pair
into_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn into_value(self) -> T {$/;"	P	implementation:Pair
inverted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^    pub inverted: bool,$/;"	m	struct:CamelOptions
is_brace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        pub(crate) fn is_brace(&self) -> bool {$/;"	P	implementation:parsing::MacroDelimiter
is_call_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn is_call_site(&self) -> bool {$/;"	P	implementation:Span
is_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^pub fn is_camel_case(test_string: &str) -> bool {$/;"	f
is_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_camel_case(&self) -> bool;$/;"	P	interface:Inflector
is_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^pub fn is_class_case(test_string: &str) -> bool {$/;"	f
is_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_class_case(&self) -> bool;$/;"	P	interface:Inflector
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_camel_case() {$/;"	f	module:tests
is_correct_from_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_class_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_kebab_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_pascal_case() {$/;"	f	module:tests
is_correct_from_screaming_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_screaming_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_screaming_snake_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_sentence_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_snake_case() {$/;"	f	module:tests
is_correct_from_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_table_case() {$/;"	f	module:tests
is_correct_from_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_table_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_title_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_correct_from_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn is_correct_from_train_case() {$/;"	f	module:tests
is_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^pub(crate) fn is_delimiter(cursor: Cursor, delimiter: Delimiter) -> bool {$/;"	f
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:TokenStream
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:TokenStream
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:Cursor
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:RcVec
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn is_empty(&self) -> bool {$/;"	P	implementation:DeferredTokenStream
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:TokenStream
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:Fields
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:ParseBuffer
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:PathArguments
is_empty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn is_empty(&self) -> bool {$/;"	P	implementation:Punctuated
is_foreign_key	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_foreign_key(&self) -> bool;$/;"	P	interface:Inflector
is_foreign_key	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/suffix/foreignkey/mod.rs	/^pub fn is_foreign_key(test_string: &str) -> bool {$/;"	f
is_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub fn is_ident<I: ?Sized>(&self, ident: &I) -> bool$/;"	P	implementation:Path
is_ident_continue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) fn is_ident_continue(c: char) -> bool {$/;"	f
is_ident_start	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub(crate) fn is_ident_start(c: char) -> bool {$/;"	f
is_inherited	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn is_inherited(&self) -> bool {$/;"	P	implementation:parsing::Visibility
is_inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn is_inner(attr: &&Attribute) -> bool {$/;"	f	method:Attribute::inner
is_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^pub fn is_kebab_case(test_string: &str) -> bool {$/;"	f
is_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_kebab_case(&self) -> bool;$/;"	P	interface:Inflector
is_mod_style	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        pub(crate) fn is_mod_style(&self) -> bool {$/;"	P	implementation:parsing::Path
is_named	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn is_named(&self) -> bool {$/;"	P	implementation:parsing::Member
is_none	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub fn is_none(&self) -> bool {$/;"	P	implementation:PathArguments
is_not_alphanumeric	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn is_not_alphanumeric(character: char) -> bool {$/;"	f
is_ordinalizable	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/ordinalize/mod.rs	/^fn is_ordinalizable(last_number: char) -> bool {$/;"	f
is_outer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn is_outer(attr: &&Attribute) -> bool {$/;"	f	method:Attribute::outer
is_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^pub fn is_pascal_case(test_string: &str) -> bool {$/;"	f
is_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_pascal_case(&self) -> bool;$/;"	P	interface:Inflector
is_real	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn is_real(&self) -> bool {$/;"	P	implementation:SourceFile
is_real	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn is_real(&self) -> bool {$/;"	P	implementation:SourceFile
is_real	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn is_real(&self) -> bool {$/;"	P	implementation:SourceFile
is_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^pub fn is_screaming_snake_case(test_string: &str) -> bool {$/;"	f
is_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_screaming_snake_case(&self) -> bool;$/;"	P	interface:Inflector
is_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^pub fn is_sentence_case(test_string: &str) -> bool {$/;"	f
is_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_sentence_case(&self) -> bool;$/;"	P	interface:Inflector
is_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^pub fn is_snake_case(test_string: &str) -> bool {$/;"	f
is_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_snake_case(&self) -> bool;$/;"	P	interface:Inflector
is_some	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^        pub(crate) fn is_some(&self) -> bool {$/;"	P	implementation:parsing::Visibility
is_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^pub fn is_table_case(test_string: &str) -> bool {$/;"	f
is_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_table_case(&self) -> bool;$/;"	P	interface:Inflector
is_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^pub fn is_title_case(test_string: &str) -> bool {$/;"	f
is_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_title_case(&self) -> bool;$/;"	P	interface:Inflector
is_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^pub fn is_train_case(test_string: &str) -> bool {$/;"	f
is_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn is_train_case(&self) -> bool;$/;"	P	interface:Inflector
is_unnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn is_unnamed(&self) -> bool {$/;"	P	implementation:parsing::Member
is_whitespace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn is_whitespace(ch: char) -> bool {$/;"	f
is_whitespace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/whitespace.rs	/^fn is_whitespace(ch: char) -> bool {$/;"	f
item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod item;$/;"	n
iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn iter(&self) -> slice::Iter<T> {$/;"	P	implementation:RcVec
iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    pub fn iter(&self) -> punctuated::Iter<Field> {$/;"	P	implementation:Fields
iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn iter(&self) -> Iter<T> {$/;"	P	implementation:Punctuated
iter_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    pub fn iter_mut(&mut self) -> punctuated::IterMut<Field> {$/;"	P	implementation:Fields
iter_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn iter_mut(&mut self) -> IterMut<T> {$/;"	P	implementation:Punctuated
join	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    pub fn join(&self) -> Span {$/;"	P	implementation:DelimSpan
join	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn join(&self, _other: Span) -> Option<Span> {$/;"	P	implementation:Span
join	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn join(&self, other: Span) -> Option<Span> {$/;"	P	implementation:Span
join	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn join(&self, other: Span) -> Option<Span> {$/;"	P	implementation:Span
join	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn join(&self, other: Span) -> Option<Span> {$/;"	P	implementation:Span
join_spans	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^fn join_spans(tokens: TokenStream) -> Span {$/;"	f
kebabcase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod kebabcase;$/;"	n
keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub(crate) fn keyword(input: ParseStream, token: &str) -> Result<Span> {$/;"	f	module:parsing
keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub(crate) fn keyword(s: &str, span: Span, tokens: &mut TokenStream) {$/;"	f	module:printing
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    last: Option<Box<T>>,$/;"	m	struct:Punctuated
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    last: option::IntoIter<&'a T>,$/;"	m	struct:Pairs
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    last: option::IntoIter<&'a T>,$/;"	m	struct:PrivateIter
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    last: option::IntoIter<&'a mut T>,$/;"	m	struct:PairsMut
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    last: option::IntoIter<&'a mut T>,$/;"	m	struct:PrivateIterMut
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    last: option::IntoIter<T>,$/;"	m	struct:IntoPairs
last	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn last(&self) -> Option<&T> {$/;"	P	implementation:Punctuated
last_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) fn last_byte(self) -> Self {$/;"	P	implementation:Span
last_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^    pub last_char: char,$/;"	m	struct:CamelOptions
last_char_lower_current_is_upper_or_new_word	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn last_char_lower_current_is_upper_or_new_word(new_word: bool, last_char: char, character: char/;"	f
last_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn last_mut(&mut self) -> Option<&mut T> {$/;"	P	implementation:Punctuated
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leading_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn leading_bad_chars() {$/;"	f	module:tests
leaf_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn leaf_token(input: Cursor) -> PResult<TokenTree> {$/;"	f
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:Cursor
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn len(&self) -> usize {$/;"	P	implementation:RcVec
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^    pub fn len(&self) -> usize {$/;"	P	implementation:Fields
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:IntoIter
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:IntoPairs
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:Iter
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:IterMut
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:Pairs
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:PairsMut
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:PrivateIter
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn len(&self) -> usize {$/;"	P	implementation:PrivateIterMut
len	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn len(&self) -> usize {$/;"	P	implementation:Punctuated
lex_error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn lex_error(cursor: Cursor) -> LexError {$/;"	f
lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn lifetime(mut self) -> Option<(Lifetime, Cursor<'a>)> {$/;"	P	implementation:Cursor
lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    pub fn lifetime(&self) -> Option<&Lifetime> {$/;"	P	implementation:Receiver
lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod lifetime;$/;"	n
lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn lifetimes(&self) -> Lifetimes {$/;"	P	implementation:Generics
lifetimes_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn lifetimes_mut(&mut self) -> LifetimesMut {$/;"	P	implementation:Generics
lift	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^        fn lift<F>(self, f: F) -> Self$/;"	P	implementation:fold::Vec
lift	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^        fn lift<F>(self, f: F) -> Self$/;"	P	interface:fold::FoldHelper
lift	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen_helper.rs	/^        fn lift<F>(self, mut f: F) -> Self$/;"	P	implementation:fold::Punctuated
line	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^    pub line: usize,$/;"	m	struct:LineColumn
lines	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    lines: Vec<usize>,$/;"	m	struct:FileInfo
lines_offsets	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^fn lines_offsets(s: &str) -> (usize, Vec<usize>) {$/;"	f
lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod lit;$/;"	n
lit_extra_traits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^macro_rules! lit_extra_traits {$/;"	M
literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^pub(crate) fn literal(input: Cursor) -> PResult<Literal> {$/;"	f
literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn literal(mut self) -> Option<(Literal, Cursor<'a>)> {$/;"	P	implementation:Cursor
literal_nocapture	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn literal_nocapture(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
literal_suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn literal_suffix(input: Cursor) -> Cursor {$/;"	f
lo	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) lo: u32,$/;"	m	struct:Span
located_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn located_at(&self, other: Span) -> Span {$/;"	P	implementation:Span
located_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn located_at(&self, other: Span) -> Span {$/;"	P	implementation:Span
located_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn located_at(&self, other: Span) -> Span {$/;"	P	implementation:Span
location	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod location;$/;"	n
lookahead	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod lookahead;$/;"	n
lookahead	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/sealed.rs	/^pub(crate) mod lookahead {$/;"	n
lookahead1	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn lookahead1(&self) -> Lookahead1<'a> {$/;"	P	implementation:ParseBuffer
mac	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod mac;$/;"	n
macros	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod macros;$/;"	n
make_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn make_mut(&mut self) -> RcVecMut<T>$/;"	P	implementation:RcVec
make_owned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn make_owned(mut self) -> RcVecBuilder<T>$/;"	P	implementation:RcVec
make_tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^    macro_rules! make_tests{$/;"	M	module:tests
make_where_clause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn make_where_clause(&mut self) -> &mut WhereClause {$/;"	P	implementation:Generics
marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod marker;$/;"	n
marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    marker: PhantomData<&'a Entry>,$/;"	m	struct:Cursor
marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    marker: PhantomData<Cursor<'a>>,$/;"	m	struct:ParseBuffer
marker	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    marker: PhantomData<fn(Cursor<'c>) -> Cursor<'a>>,$/;"	m	struct:StepCursor
message	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    message: String,$/;"	m	struct:ErrorMessage
messages	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    messages: Vec<ErrorMessage>,$/;"	m	struct:Error
messages	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    messages: slice::Iter<'a, ErrorMessage>,$/;"	m	struct:Iter
messages	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    messages: vec::IntoIter<ErrorMessage>,$/;"	m	struct:IntoIter
meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod meta;$/;"	n
mismatch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^fn mismatch() -> ! {$/;"	f
mixed_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn mixed_site() -> Self {$/;"	P	implementation:Span
mixed_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn mixed_site() -> Self {$/;"	P	implementation:Span
mixed_site	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn mixed_site() -> Self {$/;"	P	implementation:Span
mk_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn mk_ident(id: &str, span: Option<Span>) -> Ident {$/;"	f
model_schema_ident	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    model_schema_ident: Ident,$/;"	m	struct:Config
mul_assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^    fn mul_assign(&mut self, base: u8) {$/;"	P	implementation:BigInt
multi_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn multi_index(e: &mut Expr, dot_token: &mut Token![.], float: LitFloat) -> Result<bool> {$/;"	f	module:parsing
multi_pat_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn multi_pat_impl(input: ParseStream, leading_vert: Option<Token![|]>) -> Result<Pat> {$/;"	f	module:parsing
name	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        name: &'a str,$/;"	m	struct:push_lifetime::Lifetime
name	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        name: &'a str,$/;"	m	struct:push_lifetime_spanned::Lifetime
named	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    named: &'a Punctuated<Field, Comma>,$/;"	m	struct:Config
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    pub(crate) fn new(group: &imp::Group) -> Self {$/;"	P	implementation:DelimSpan
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn new() -> Self {$/;"	P	implementation:TokenStream
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn new() -> Self {$/;"	P	implementation:TokenStreamBuilder
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn new(delimiter: Delimiter, stream: TokenStream) -> Self {$/;"	P	implementation:Group
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn new(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn new() -> Self {$/;"	P	implementation:TokenStream
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn new(ch: char, spacing: Spacing) -> Self {$/;"	P	implementation:Punct
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn new(delimiter: Delimiter, stream: TokenStream) -> Self {$/;"	P	implementation:Group
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn new(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn new() -> Self {$/;"	P	implementation:RcVecBuilder
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn new(stream: proc_macro::TokenStream) -> Self {$/;"	P	implementation:DeferredTokenStream
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn new() -> Self {$/;"	P	implementation:TokenStream
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn new(delimiter: Delimiter, stream: TokenStream) -> Self {$/;"	P	implementation:Group
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn new(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^    pub(crate) fn new() -> Self {$/;"	P	implementation:BigInt
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn new(stream: pm::TokenStream) -> Self {$/;"	P	implementation:TokenBuffer
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^    pub(crate) fn new(value: T) -> Self$/;"	P	implementation:NoDrop
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^        fn new(span: Span, message: String) -> Error {$/;"	f	method:Error::new
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    pub fn new<T: Display>(span: Span, message: T) -> Self {$/;"	P	implementation:Error
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn new(lifetime: Lifetime) -> Self {$/;"	P	implementation:LifetimeParam
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    pub fn new(symbol: &str, span: Span) -> Self {$/;"	P	implementation:Lifetime
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        pub fn new(token: Literal) -> Self {$/;"	P	implementation:value::Lit
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(repr: &str, span: Span) -> Self {$/;"	P	implementation:LitFloat
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(repr: &str, span: Span) -> Self {$/;"	P	implementation:LitInt
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(value: &[u8], span: Span) -> Self {$/;"	P	implementation:LitByteStr
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(value: &str, span: Span) -> Self {$/;"	P	implementation:LitStr
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(value: bool, span: Span) -> Self {$/;"	P	implementation:LitBool
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(value: char, span: Span) -> Self {$/;"	P	implementation:LitChar
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn new(value: u8, span: Span) -> Self {$/;"	P	implementation:LitByte
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^pub(crate) fn new(scope: Span, cursor: Cursor) -> Lookahead1 {$/;"	f
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub const fn new() -> Self {$/;"	P	implementation:Punctuated
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn new(t: T, p: Option<P>) -> Self {$/;"	P	implementation:Pair
new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^    pub(crate) fn new(value: T) -> Self {$/;"	P	implementation:ThreadBound
new	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    fn new(attrs: &[Attribute]) -> Self {$/;"	P	implementation:DbType
new	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    fn new(attrs: &[Attribute], ident: &'a Ident, named: &'a Punctuated<Field, Comma>) -> Self {$/;"	P	implementation:Config
new2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn new2(stream: TokenStream) -> Self {$/;"	P	implementation:TokenBuffer
new2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn new2(start: Span, end: Span, message: String) -> Error {$/;"	f	function:new2
new2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^pub(crate) fn new2<T: Display>(start: Span, end: Span, message: T) -> Error {$/;"	f
new_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^pub(crate) fn new_at<T: Display>(scope: Span, cursor: Cursor, message: T) -> Error {$/;"	f
new_parse_buffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub(crate) fn new_parse_buffer($/;"	f
new_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn new_raw(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
new_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn new_raw(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
new_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn new_raw(string: &str, span: Span) -> Self {$/;"	P	implementation:Ident
new_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^        fn new_spanned(tokens: TokenStream, message: String) -> Error {$/;"	f	method:Error::new_spanned
new_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    pub fn new_spanned<T: ToTokens, U: Display>(tokens: T, message: U) -> Self {$/;"	P	implementation:Error
new_word	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^    pub new_word: bool,$/;"	m	struct:CamelOptions
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        fn next(&mut self) -> Option<TokenTree> {$/;"	P	implementation:token_stream::IntoIter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:RcVecIntoIter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn next(&mut self) -> Option<TokenTree> {$/;"	P	implementation:TokenTreeIter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:push_lifetime::Lifetime
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:push_lifetime_spanned::Lifetime
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn next(&self) -> Option<&Self> {$/;"	P	interface:ext::RepToTokensExt
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:RepInterp
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub fn next(self) -> Option<T> {$/;"	P	implementation:RepInterp
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IntoIter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Iter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:ConstParams
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:ConstParamsMut
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Lifetimes
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:LifetimesMut
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:TypeParams
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:TypeParamsMut
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IntoIter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IntoPairs
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Iter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IterMut
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Pairs
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:PairsMut
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:PrivateIter
next	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	P	implementation:PrivateIterMut
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IntoIter
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IntoPairs
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Iter
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:IterMut
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:Pairs
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:PairsMut
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:PrivateIter
next_back	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn next_back(&mut self) -> Option<Self::Item> {$/;"	P	implementation:PrivateIterMut
next_ch	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^macro_rules! next_ch {$/;"	M
next_chr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn next_chr(s: &str) -> char {$/;"	f	module:value
next_or_previous_char_is_lowercase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn next_or_previous_char_is_lowercase(convertable_string: &str, char_with_index: usize) -> bool /;"	f
next_start_pos	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn next_start_pos(&self) -> u32 {$/;"	P	implementation:SourceMap
nightly	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn nightly(sf: proc_macro::SourceFile) -> Self {$/;"	P	implementation:SourceFile
not_first_word_and_has_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn not_first_word_and_has_seperator(first_word: bool, has_seperator: bool) -> bool {$/;"	f
numbers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^pub mod numbers;$/;"	n
of	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn of(op: &BinOp) -> Self {$/;"	P	implementation:parsing::Precedence
off	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub off: u32,$/;"	m	struct:Cursor
offset_line_column	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn offset_line_column(&self, offset: usize) -> LineColumn {$/;"	P	implementation:FileInfo
op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod op;$/;"	n
open	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/extra.rs	/^    pub fn open(&self) -> Span {$/;"	P	implementation:DelimSpan
open_span_of_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub(crate) fn open_span_of_group(cursor: Cursor) -> Span {$/;"	f
ordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn ordinalize(&self) -> String;$/;"	P	interface:Inflector
ordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn ordinalize(&self) -> String;$/;"	P	interface:InflectorNumbers
ordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/mod.rs	/^pub mod ordinalize;$/;"	n
ordinalize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/ordinalize/mod.rs	/^pub fn ordinalize(non_ordinalized_string: &str) -> String {$/;"	f
outer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    fn outer(self) -> Self::Ret {$/;"	P	implementation:Attribute
outer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    fn outer(self) -> Self::Ret;$/;"	P	interface:FilterAttrs
outer_attrs_to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    pub(crate) fn outer_attrs_to_tokens(_attrs: &[Attribute], _tokens: &mut TokenStream) {}$/;"	f	module:printing
outer_attrs_to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    pub(crate) fn outer_attrs_to_tokens(attrs: &[Attribute], tokens: &mut TokenStream) {$/;"	f	module:printing
pairs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn pairs(&self) -> Pairs<T, P> {$/;"	P	implementation:Punctuated
pairs_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn pairs_mut(&mut self) -> PairsMut<T, P> {$/;"	P	implementation:Punctuated
paren_or_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn paren_or_tuple(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
parenthesized	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^macro_rules! parenthesized {$/;"	M
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod parse;$/;"	n
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    fn parse(&self, tag: &str) -> Result<Cursor<'a>, Reject> {$/;"	P	implementation:Cursor
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn parse(tokens: &mut TokenStream, s: &str) {$/;"	f
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Meta
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::MetaList
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::MetaNameValue
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::FieldsNamed
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::FieldsUnnamed
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Variant
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::DeriveInput
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Arm> {$/;"	P	implementation:parsing::Arm
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Expr
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprArray
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprAsync
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprBlock
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprBreak
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprClosure
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprConst
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprContinue
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprForLoop
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprIf
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprInfer
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprLet
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprLit
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprLoop
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprMacro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprMatch
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprParen
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprPath
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprReference
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprRepeat
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprReturn
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprStruct
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprTryBlock
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprUnary
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprUnsafe
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprWhile
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ExprYield
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::FieldValue
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Index
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Label
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Member
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Option
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::RangeLimits
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/file.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::File
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::BoundLifetimes
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ConstParam
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::GenericParam
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Generics
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LifetimeParam
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Option
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitBound
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitBoundModifier
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeParam
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeParamBound
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::WhereClause
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::WherePredicate
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Ident
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse($/;"	P	implementation:parsing::FlexibleItemType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::FnArg
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ForeignItem
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ForeignItemFn
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ForeignItemMacro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ForeignItemStatic
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ForeignItemType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ImplItem
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ImplItemConst
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ImplItemFn
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ImplItemMacro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ImplItemType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Item
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemConst
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemEnum
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemExternCrate
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemFn
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemForeignMod
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemImpl
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemMacro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemMod
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemStatic
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemStruct
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemTrait
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemTraitAlias
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemUnion
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ItemUse
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Receiver
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Signature
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::StaticMutability
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitItem
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitItemConst
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitItemFn
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitItemMacro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TraitItemType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse(input: ParseStream) -> Result<UseTree> {$/;"	P	implementation:parsing::UseTree
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub fn parse<T: parse::Parse>(tokens: proc_macro::TokenStream) -> Result<T> {$/;"	f
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod parse;$/;"	n
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Lifetime
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Lit
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitBool
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitByte
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitByteStr
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitChar
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitFloat
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitInt
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::LitStr
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn parse<T: Parse>(&self) -> Result<T> {$/;"	P	implementation:LitStr
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Macro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::BinOp
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::UnOp
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(_input: ParseStream) -> Result<Self> {$/;"	P	implementation:Nothing
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Box
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Group
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Literal
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Option
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Punct
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:TokenStream
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:TokenTree
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(input: ParseStream) -> Result<Self>;$/;"	P	interface:Parse
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse(self, tokens: proc_macro::TokenStream) -> Result<Self::Output> {$/;"	P	interface:Parser
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn parse<T: Parse>(&self) -> Result<T> {$/;"	P	implementation:ParseBuffer
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Attribute
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Box
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Pat
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Punctuated
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:T
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Vec
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^    fn parse(input: ParseStream) -> Result<Self>;$/;"	P	interface:ParseQuote
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^pub fn parse<T: ParseQuote>(token_stream: TokenStream) -> T {$/;"	f
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::AngleBracketedGenericArguments
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::GenericArgument
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ParenthesizedGenericArguments
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Path
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::PathSegment
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Visibility
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Block
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Stmt
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Underscore
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Abi
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::BareFnArg
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Option
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ReturnType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Type
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeArray
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeBareFn
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeGroup
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeImplTrait
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeInfer
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeMacro
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeNever
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeParen
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypePath
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypePtr
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeReference
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeSlice
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeTraitObject
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeTuple
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> {$/;"	P	implementation:parsing::TypeParen
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub(crate) fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> {$/;"	P	implementation:parsing::ReturnType
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub(crate) fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> {$/;"	P	implementation:parsing::TypeImplTrait
parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub(crate) fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> {$/;"	P	implementation:parsing::TypeTraitObject
parse2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub fn parse2<T: parse::Parse>(tokens: proc_macro2::TokenStream) -> Result<T> {$/;"	f
parse2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse2(self, tokens: TokenStream) -> Result<Self::Output>;$/;"	P	interface:Parser
parse2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse2(self, tokens: TokenStream) -> Result<T> {$/;"	f
parse_any	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    fn parse_any(input: ParseStream) -> Result<Self> {$/;"	P	implementation:Ident
parse_any	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    fn parse_any(input: ParseStream) -> Result<Self>;$/;"	P	interface:IdentExt
parse_any_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^    fn parse_any_delimiter(&self) -> Result<(Delimiter, DelimSpan, ParseBuffer)> {$/;"	P	implementation:ParseBuffer
parse_any_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/discouraged.rs	/^    fn parse_any_delimiter(&self) -> Result<(Delimiter, DelimSpan, ParseBuffer)>;$/;"	P	interface:AnyDelimiter
parse_args	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_args<T: Parse>(&self) -> Result<T> {$/;"	P	implementation:Attribute
parse_args	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_args<T: Parse>(&self) -> Result<T> {$/;"	P	implementation:MetaList
parse_args_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_args_with<F: Parser>(&self, parser: F) -> Result<F::Output> {$/;"	P	implementation:Attribute
parse_args_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_args_with<F: Parser>(&self, parser: F) -> Result<F::Output> {$/;"	P	implementation:MetaList
parse_bare_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    fn parse_bare_fn_arg(input: ParseStream, allow_self: bool) -> Result<BareFnArg> {$/;"	f	module:parsing
parse_bare_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^    fn parse_bare_variadic(input: ParseStream, attrs: Vec<Attribute>) -> Result<BareVariadic> {$/;"	f	module:parsing
parse_binop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^    fn parse_binop(input: ParseStream) -> Result<BinOp> {$/;"	f	module:parsing
parse_body	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^    pub fn parse_body<T: Parse>(&self) -> Result<T> {$/;"	P	implementation:Macro
parse_body_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^    pub fn parse_body_with<F: Parser>(&self, parser: F) -> Result<F::Output> {$/;"	P	implementation:Macro
parse_bounds	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn parse_bounds($/;"	P	implementation:parsing::TypeTraitObject
parse_braces	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub fn parse_braces<'a>(input: &ParseBuffer<'a>) -> Result<Braces<'a>> {$/;"	f
parse_brackets	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub fn parse_brackets<'a>(input: &ParseBuffer<'a>) -> Result<Brackets<'a>> {$/;"	f
parse_delimited	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^fn parse_delimited<'a>($/;"	f
parse_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^pub(crate) fn parse_delimiter(input: ParseStream) -> Result<(MacroDelimiter, TokenStream)> {$/;"	f
parse_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn parse_expr($/;"	f	module:parsing
parse_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn parse_expr(input: ParseStream, mut lhs: Expr, base: Precedence) -> Result<Expr> {$/;"	f	module:parsing
parse_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub fn parse_file(mut content: &str) -> Result<File> {$/;"	f
parse_fn_arg_or_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_fn_arg_or_variadic($/;"	f	module:parsing
parse_fn_args	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_fn_args($/;"	f	module:parsing
parse_foreign_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_foreign_item_type(begin: ParseBuffer, input: ParseStream) -> Result<ForeignItem> {$/;"	f	module:parsing
parse_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub(crate) fn parse_group<'a>(input: &ParseBuffer<'a>) -> Result<Group<'a>> {$/;"	f
parse_helper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn parse_helper(input: ParseStream, expr_style: bool) -> Result<Self> {$/;"	P	implementation:parsing::PathSegment
parse_helper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        pub(crate) fn parse_helper(input: ParseStream, expr_style: bool) -> Result<Self> {$/;"	P	implementation:parsing::Path
parse_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_impl(input: ParseStream, allow_verbatim_impl: bool) -> Result<Option<ItemImpl>> {$/;"	f	module:parsing
parse_impl_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_impl_item_fn($/;"	f	module:parsing
parse_impl_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_impl_item_type(begin: ParseBuffer, input: ParseStream) -> Result<ImplItem> {$/;"	f	module:parsing
parse_inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_inner(input: ParseStream) -> Result<Vec<Self>> {$/;"	P	implementation:Attribute
parse_inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub(crate) fn parse_inner(input: ParseStream, attrs: &mut Vec<Attribute>) -> Result<()> {$/;"	f	module:parsing
parse_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_item_type(begin: ParseBuffer, input: ParseStream) -> Result<Item> {$/;"	f	module:parsing
parse_item_use	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_item_use($/;"	f	module:parsing
parse_lit_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn parse_lit_byte(s: &str) -> (u8, Box<str>) {$/;"	f	module:value
parse_lit_byte_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn parse_lit_byte_str(s: &str) -> (Vec<u8>, Box<str>) {$/;"	f	module:value
parse_lit_byte_str_cooked	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn parse_lit_byte_str_cooked(mut s: &str) -> (Vec<u8>, Box<str>) {$/;"	f	module:value
parse_lit_byte_str_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn parse_lit_byte_str_raw(s: &str) -> (Vec<u8>, Box<str>) {$/;"	f	module:value
parse_lit_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn parse_lit_char(mut s: &str) -> (char, Box<str>) {$/;"	f	module:value
parse_lit_float	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn parse_lit_float(input: &str) -> Option<(Box<str>, Box<str>)> {$/;"	f	module:value
parse_lit_int	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn parse_lit_int(mut s: &str) -> Option<(Box<str>, Box<str>)> {$/;"	f	module:value
parse_lit_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub(crate) fn parse_lit_str(s: &str) -> (Box<str>, Box<str>) {$/;"	f	module:value
parse_lit_str_cooked	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn parse_lit_str_cooked(mut s: &str) -> (Box<str>, Box<str>) {$/;"	f	module:value
parse_lit_str_raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn parse_lit_str_raw(mut s: &str) -> (Box<str>, Box<str>) {$/;"	f	module:value
parse_macro2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_macro2(begin: ParseBuffer, _vis: Visibility, input: ParseStream) -> Result<Item> {$/;"	f	module:parsing
parse_macro_input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod parse_macro_input;$/;"	n
parse_macro_input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_macro_input.rs	/^macro_rules! parse_macro_input {$/;"	M
parse_meta_after_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub(crate) fn parse_meta_after_path(path: Path, input: ParseStream) -> Result<Meta> {$/;"	f	module:parsing
parse_meta_list_after_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    fn parse_meta_list_after_path(path: Path, input: ParseStream) -> Result<MetaList> {$/;"	f	module:parsing
parse_meta_name_value_after_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    fn parse_meta_name_value_after_path(path: Path, input: ParseStream) -> Result<MetaNameValue>/;"	f	module:parsing
parse_meta_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^fn parse_meta_path(input: ParseStream) -> Result<Path> {$/;"	f
parse_mod_style	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        pub fn parse_mod_style(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Path
parse_multi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        pub fn parse_multi(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Pat
parse_multi_with_leading_vert	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        pub fn parse_multi_with_leading_vert(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Pat
parse_multiple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        pub(crate) fn parse_multiple($/;"	P	implementation:parsing::TypeParamBound
parse_named	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        pub fn parse_named(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Field
parse_negative_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    fn parse_negative_lit(neg: Punct, cursor: Cursor) -> Option<(Lit, Cursor)> {$/;"	f	module:parsing
parse_nested_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_nested_meta($/;"	P	implementation:Attribute
parse_nested_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_nested_meta($/;"	P	implementation:MetaList
parse_nested_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^    pub fn parse_nested_meta($/;"	P	implementation:ParseNestedMeta
parse_nested_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^pub(crate) fn parse_nested_meta($/;"	f
parse_obsolete	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        pub(crate) fn parse_obsolete(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::RangeLimits
parse_optional_bounds	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse_optional_bounds($/;"	P	implementation:parsing::FlexibleItemType
parse_optional_definition	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn parse_optional_definition(input: ParseStream) -> Result<Option<(Token![=], Type)>> {$/;"	P	implementation:parsing::FlexibleItemType
parse_outer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn parse_outer(input: ParseStream) -> Result<Vec<Self>> {$/;"	P	implementation:Attribute
parse_parens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^pub fn parse_parens<'a>(input: &ParseBuffer<'a>) -> Result<Parens<'a>> {$/;"	f
parse_pub	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^        fn parse_pub(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Visibility
parse_quote	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod parse_quote;$/;"	n
parse_quote	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^macro_rules! parse_quote {$/;"	M
parse_quote_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse_quote.rs	/^macro_rules! parse_quote_spanned {$/;"	M
parse_rest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        pub(crate) fn parse_rest($/;"	P	implementation:parsing::Path
parse_rest_of_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_rest_of_fn($/;"	f	module:parsing
parse_rest_of_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_rest_of_trait($/;"	f	module:parsing
parse_rest_of_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_rest_of_trait_alias($/;"	f	module:parsing
parse_scoped	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^pub(crate) fn parse_scoped<F: Parser>(f: F, scope: Span, tokens: TokenStream) -> Result<F::Outpu/;"	f
parse_separated_nonempty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn parse_separated_nonempty(input: ParseStream) -> Result<Self>$/;"	P	implementation:Punctuated
parse_separated_nonempty_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn parse_separated_nonempty_with($/;"	P	implementation:Punctuated
parse_single	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        pub fn parse_single(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Pat
parse_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn parse_spanned(tokens: &mut TokenStream, span: Span, s: &str) {$/;"	f
parse_start_of_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_start_of_trait_alias($/;"	f	module:parsing
parse_stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    fn parse_stmt(input: ParseStream, allow_nosemi: AllowNoSemi) -> Result<Stmt> {$/;"	f	module:parsing
parse_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub fn parse_str<T: parse::Parse>(s: &str) -> Result<T> {$/;"	f
parse_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    fn parse_str(self, s: &str) -> Result<Self::Output> {$/;"	P	interface:Parser
parse_terminated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn parse_terminated<T, P>($/;"	P	implementation:ParseBuffer
parse_terminated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn parse_terminated(input: ParseStream) -> Result<Self>$/;"	P	implementation:Punctuated
parse_terminated_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn parse_terminated_with($/;"	P	implementation:Punctuated
parse_trait_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_trait_item_type(begin: ParseBuffer, input: ParseStream) -> Result<TraitItem> {$/;"	f	module:parsing
parse_trait_or_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_trait_or_trait_alias(input: ParseStream) -> Result<Item> {$/;"	f	module:parsing
parse_turbofish	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        pub fn parse_turbofish(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::AngleBracketedGenericArguments
parse_unnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        pub fn parse_unnamed(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Field
parse_use_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn parse_use_tree($/;"	f	module:parsing
parse_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn parse_with<F: Parser>(&self, parser: F) -> Result<F::Output> {$/;"	P	implementation:LitStr
parse_within	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        pub fn parse_within(input: ParseStream) -> Result<Vec<Stmt>> {$/;"	P	implementation:parsing::Block
parse_without_eager_brace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        pub fn parse_without_eager_brace(input: ParseStream) -> Result<Expr> {$/;"	P	implementation:parsing::Expr
parser	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^pub fn parser(logic: impl FnMut(ParseNestedMeta) -> Result<()>) -> impl Parser<Output = ()> {$/;"	f
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/file.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^pub(crate) mod parsing {$/;"	n
parsing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^pub(crate) mod parsing {$/;"	n
partial_cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    fn partial_cmp(&self, other: &Ident) -> Option<Ordering> {$/;"	P	implementation:Ident
partial_cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/location.rs	/^    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {$/;"	P	implementation:LineColumn
partial_cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {$/;"	P	implementation:Cursor
partial_cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn partial_cmp(&self, other: &Self) -> Option<Ordering> {$/;"	P	implementation:parsing::Precedence
partial_cmp	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    fn partial_cmp(&self, other: &Lifetime) -> Option<Ordering> {$/;"	P	implementation:Lifetime
pascalcase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod pascalcase;$/;"	n
pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod pat;$/;"	n
pat_box	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_box(begin: ParseBuffer, input: ParseStream) -> Result<Pat> {$/;"	f	module:parsing
pat_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_const(input: ParseStream) -> Result<TokenStream> {$/;"	f	module:parsing
pat_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_ident(input: ParseStream) -> Result<PatIdent> {$/;"	f	module:parsing
pat_lit_or_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_lit_or_range(input: ParseStream) -> Result<Pat> {$/;"	f	module:parsing
pat_paren_or_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_paren_or_tuple(input: ParseStream) -> Result<Pat> {$/;"	f	module:parsing
pat_path_or_macro_or_struct_or_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_path_or_macro_or_struct_or_range(input: ParseStream) -> Result<Pat> {$/;"	f	module:parsing
pat_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_range(input: ParseStream, qself: Option<QSelf>, path: Path) -> Result<Pat> {$/;"	f	module:parsing
pat_range_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_range_bound(input: ParseStream) -> Result<Option<PatRangeBound>> {$/;"	f	module:parsing
pat_range_half_open	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_range_half_open(input: ParseStream) -> Result<Pat> {$/;"	f	module:parsing
pat_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_reference(input: ParseStream) -> Result<PatReference> {$/;"	f	module:parsing
pat_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_slice(input: ParseStream) -> Result<PatSlice> {$/;"	f	module:parsing
pat_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_struct(input: ParseStream, qself: Option<QSelf>, path: Path) -> Result<PatStruct> {$/;"	f	module:parsing
pat_tuple_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_tuple_struct($/;"	f	module:parsing
pat_wild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^    fn pat_wild(input: ParseStream) -> Result<PatWild> {$/;"	f	module:parsing
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    path: PathBuf,$/;"	m	struct:SourceFile
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn path(&self) -> PathBuf {$/;"	P	implementation:SourceFile
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn path(&self) -> PathBuf {$/;"	P	implementation:SourceFile
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn path(&self) -> PathBuf {$/;"	P	implementation:SourceFile
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn path(&self) -> &Path {$/;"	P	implementation:Attribute
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn path(&self) -> &Path {$/;"	P	implementation:Meta
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod path;$/;"	n
path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^    pub path: Path,$/;"	m	struct:ParseNestedMeta
path_or_macro_or_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn path_or_macro_or_struct($/;"	f	module:parsing
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:IdentAny
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^        fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:parsing::Ident
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    pub fn peek<T: Peek>(&self, token: T) -> bool {$/;"	P	implementation:Lookahead1
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn peek<T: Peek>(&self, token: T) -> bool {$/;"	P	implementation:ParseBuffer
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:Brace
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:Bracket
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:Group
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:Paren
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:T
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool {$/;"	P	implementation:Underscore
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool;$/;"	P	interface:CustomToken
peek	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn peek(cursor: Cursor) -> bool;$/;"	P	interface:Token
peek2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^        fn peek2(buffer: &ParseBuffer, peek: fn(Cursor) -> bool) -> bool {$/;"	f	method:ParseBuffer::peek2
peek2	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn peek2<T: Peek>(&self, token: T) -> bool {$/;"	P	implementation:ParseBuffer
peek3	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^        fn peek3(buffer: &ParseBuffer, peek: fn(Cursor) -> bool) -> bool {$/;"	f	method:ParseBuffer::peek3
peek3	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn peek3<T: Peek>(&self, token: T) -> bool {$/;"	P	implementation:ParseBuffer
peek_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^fn peek_impl($/;"	f
peek_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^fn peek_impl(cursor: Cursor, peek: fn(ParseStream) -> bool) -> bool {$/;"	f
peek_keyword	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub(crate) fn peek_keyword(cursor: Cursor, token: &str) -> bool {$/;"	f	module:parsing
peek_precedence	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn peek_precedence(input: ParseStream) -> Precedence {$/;"	f	module:parsing
peek_punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub fn peek_punct(mut cursor: Cursor, token: &str) -> bool {$/;"	f	module:parsing
peek_signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    fn peek_signature(input: ParseStream) -> bool {$/;"	f	module:parsing
pluralize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/mod.rs	/^pub mod pluralize;$/;"	n
pop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn pop(&mut self) -> Option<T> {$/;"	P	implementation:RcVecMut
pop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn pop(&mut self) -> Option<Pair<T, P>> {$/;"	P	implementation:Punctuated
pop_punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn pop_punct(&mut self) -> Option<P> {$/;"	P	implementation:Punctuated
pounded_var_names	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! pounded_var_names {$/;"	M
pounded_var_names_with_context	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! pounded_var_names_with_context {$/;"	M
pounded_var_with_context	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! pounded_var_with_context {$/;"	M
prev_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub(crate) fn prev_span(mut self) -> Span {$/;"	P	implementation:Cursor
primitive	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^macro_rules! primitive {$/;"	M
print	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod print;$/;"	n
print_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub(crate) fn print_path(tokens: &mut TokenStream, qself: &Option<QSelf>, path: &Path) {$/;"	f	module:printing
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^pub(crate) mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/file.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^pub(crate) mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^pub(crate) mod printing {$/;"	n
printing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^mod printing {$/;"	n
private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ext.rs	/^mod private {$/;"	n
private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/spanned.rs	/^mod private {$/;"	n
private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/export.rs	/^pub struct private(pub(crate) ());$/;"	s
private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^mod private {$/;"	n
private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^mod private {$/;"	n
private	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^mod private {$/;"	n
proc_macro_parse	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^fn proc_macro_parse(src: &str) -> Result<proc_macro::TokenStream, LexError> {$/;"	f
ptr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    ptr: *const Entry,$/;"	m	struct:Cursor
punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn punct(input: Cursor) -> PResult<Punct> {$/;"	f
punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn punct(mut self) -> Option<(Punct, Cursor<'a>)> {$/;"	P	implementation:Cursor
punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn punct(&self) -> Option<&P> {$/;"	P	implementation:Pair
punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub fn punct(s: &str, spans: &[Span], tokens: &mut TokenStream) {$/;"	f	module:printing
punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub fn punct<const N: usize>(input: ParseStream, token: &str) -> Result<[Span; N]> {$/;"	f	module:parsing
punct_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn punct_char(input: Cursor) -> PResult<char> {$/;"	f
punct_helper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn punct_helper(input: ParseStream, token: &str, spans: &mut [Span]) -> Result<()> {$/;"	f	module:parsing
punct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn punct_mut(&mut self) -> Option<&mut P> {$/;"	P	implementation:Pair
punctuated	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod punctuated;$/;"	n
push	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn push(&mut self, element: T) {$/;"	P	implementation:RcVecBuilder
push	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn push(&mut self, element: T) {$/;"	P	implementation:RcVecMut
push	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn push(&mut self, value: T)$/;"	P	implementation:Punctuated
push_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_group(tokens: &mut TokenStream, delimiter: Delimiter, inner: TokenStream) {$/;"	f
push_group_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_group_spanned($/;"	f
push_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_ident(tokens: &mut TokenStream, s: &str) {$/;"	f
push_ident_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_ident_spanned(tokens: &mut TokenStream, span: Span, s: &str) {$/;"	f
push_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_lifetime(tokens: &mut TokenStream, lifetime: &str) {$/;"	f
push_lifetime_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_lifetime_spanned(tokens: &mut TokenStream, span: Span, lifetime: &str) {$/;"	f
push_negative_literal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn push_negative_literal(mut vec: RcVecMut<TokenTree>, mut literal: Literal) {$/;"	f	function:push_token_from_proc_macro
push_punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^macro_rules! push_punct {$/;"	M
push_punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn push_punct(&mut self, punctuation: P) {$/;"	P	implementation:Punctuated
push_token_from_parser	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn push_token_from_parser(&mut self, tt: TokenTree) {$/;"	P	implementation:TokenStreamBuilder
push_token_from_proc_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^fn push_token_from_proc_macro(mut vec: RcVecMut<TokenTree>, token: TokenTree) {$/;"	f
push_underscore	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_underscore(tokens: &mut TokenStream) {$/;"	f
push_underscore_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^pub fn push_underscore_spanned(tokens: &mut TokenStream, span: Span) {$/;"	f
push_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn push_value(&mut self, value: T) {$/;"	P	implementation:Punctuated
qpath	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^    pub(crate) fn qpath(input: ParseStream, expr_style: bool) -> Result<(Option<QSelf>, Path)> {$/;"	f	module:parsing
quote	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote {$/;"	M
quote_bind_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_bind_into_iter {$/;"	M
quote_bind_next_or_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_bind_next_or_break {$/;"	M
quote_each_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_each_token {$/;"	M
quote_each_token_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_each_token_spanned {$/;"	M
quote_ident	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    fn quote_ident(&self, ident: &str) -> String {$/;"	P	implementation:Config
quote_ident	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    fn quote_ident(&self, ident: &str) -> String {$/;"	P	implementation:DbType
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {$/;"	P	implementation:ext::BTreeSet
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {$/;"	P	implementation:ext::RepInterp
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {$/;"	P	implementation:ext::T
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) {$/;"	P	implementation:ext::Vec
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(&'q self) -> (Self::Iter, HasIter);$/;"	P	interface:ext::RepAsIteratorExt
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(&self) -> (&Self, DoesNotHaveIter) {$/;"	P	interface:ext::RepToTokensExt
quote_into_iter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        fn quote_into_iter(self) -> (Self, HasIter) {$/;"	P	interface:ext::RepIteratorExt
quote_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_spanned {$/;"	M
quote_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_token {$/;"	M
quote_token_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_token_spanned {$/;"	M
quote_token_with_context	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_token_with_context {$/;"	M
quote_token_with_context_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_token_with_context_spanned {$/;"	M
quote_tokens_with_context	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_tokens_with_context {$/;"	M
quote_tokens_with_context_spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^macro_rules! quote_tokens_with_context_spanned {$/;"	M
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
random_text_with_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn random_text_with_bad_chars() {$/;"	f	module:tests
raw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    raw: bool,$/;"	m	struct:Ident
raw_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn raw_string(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
rcvec	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^mod rcvec;$/;"	n
receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    pub fn receiver(&self) -> Option<&Receiver> {$/;"	P	implementation:Signature
recursive_new	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    fn recursive_new(entries: &mut Vec<Entry>, stream: TokenStream) {$/;"	P	implementation:TokenBuffer
replace_attrs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    pub(crate) fn replace_attrs(&mut self, new: Vec<Attribute>) -> Vec<Attribute> {$/;"	P	implementation:Expr
replace_attrs	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^    pub(crate) fn replace_attrs(&mut self, new: Vec<Attribute>) -> Vec<Attribute> {$/;"	P	implementation:Item
repr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    repr: String,$/;"	m	struct:Literal
require_list	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn require_list(&self) -> Result<&MetaList> {$/;"	P	implementation:Meta
require_name_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn require_name_value(&self) -> Result<&MetaNameValue> {$/;"	P	implementation:Meta
require_path_only	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub fn require_path_only(&self) -> Result<&Path> {$/;"	P	implementation:Meta
requires_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn requires_seperator(char_with_index: (usize, char), first_character: bool, convertable_string:/;"	f
requires_seperator_upper_first_wrap_is_safe_current_lower	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn requires_seperator_upper_first_wrap_is_safe_current_lower() {$/;"	f
requires_seperator_upper_first_wrap_is_safe_current_lower_next_is_too	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn requires_seperator_upper_first_wrap_is_safe_current_lower_next_is_too() {$/;"	f
requires_seperator_upper_first_wrap_is_safe_current_upper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn requires_seperator_upper_first_wrap_is_safe_current_upper() {$/;"	f
requires_seperator_upper_not_first_wrap_is_safe_current_lower	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn requires_seperator_upper_not_first_wrap_is_safe_current_lower() {$/;"	f
requires_seperator_upper_not_first_wrap_is_safe_current_upper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn requires_seperator_upper_not_first_wrap_is_safe_current_upper() {$/;"	f
requires_terminator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^pub(crate) fn requires_terminator(expr: &Expr) -> bool {$/;"	f
reserve_two_digits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^    fn reserve_two_digits(&mut self) {$/;"	P	implementation:BigInt
resolved_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn resolved_at(&self, _other: Span) -> Span {$/;"	P	implementation:Span
resolved_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn resolved_at(&self, other: Span) -> Span {$/;"	P	implementation:Span
resolved_at	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn resolved_at(&self, other: Span) -> Span {$/;"	P	implementation:Span
respan_token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn respan_token_stream(stream: TokenStream, span: Span) -> TokenStream {$/;"	f	method:LitStr::parse_with
respan_token_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^fn respan_token_tree(mut token: TokenTree, span: Span) -> TokenTree {$/;"	f
respan_token_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn respan_token_tree(mut token: TokenTree, span: Span) -> TokenTree {$/;"	f	method:LitStr::parse_with
rest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub rest: &'a str,$/;"	m	struct:Cursor
restriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod restriction;$/;"	n
rules	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^macro_rules! rules{$/;"	M
rules	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^macro_rules! rules{$/;"	M
safe_convert	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/suffix/foreignkey/mod.rs	/^fn safe_convert(safe_string: &str) -> String {$/;"	f
same_buffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub(crate) fn same_buffer(a: Cursor, b: Cursor) -> bool {$/;"	f
same_scope	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^pub(crate) fn same_scope(a: Cursor, b: Cursor) -> bool {$/;"	f
scope	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    scope: *const Entry,$/;"	m	struct:Cursor
scope	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lookahead.rs	/^    scope: Span,$/;"	m	struct:Lookahead1
scope	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    scope: Span,$/;"	m	struct:ParseBuffer
scope	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    scope: Span,$/;"	m	struct:StepCursor
screamingsnakecase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod screamingsnakecase;$/;"	n
sealed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod sealed;$/;"	n
second_last_number_is_one	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/ordinalize/mod.rs	/^fn second_last_number_is_one(chars: Vec<char>) -> bool {$/;"	f
semi_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        semi_token: Token![;],$/;"	m	struct:parsing::FlexibleItemType
sentencecase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod sentencecase;$/;"	n
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Group
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Ident
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	f	method:Literal::byte_string
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Group
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Ident
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Literal
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Punct
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:TokenTree
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Group
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Ident
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Literal
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:Lifetime
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:value::Lit
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitBool
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitByte
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitByteStr
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitChar
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitFloat
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitInt
set_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn set_span(&mut self, span: Span) {$/;"	P	implementation:LitStr
single_parse_inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub(crate) fn single_parse_inner(input: ParseStream) -> Result<Attribute> {$/;"	f	module:parsing
single_parse_outer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^    pub(crate) fn single_parse_outer(input: ParseStream) -> Result<Attribute> {$/;"	f	module:parsing
singularize	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/mod.rs	/^pub mod singularize;$/;"	n
singularize_ies_suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^fn singularize_ies_suffix() {$/;"	f
singularize_ss_suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^fn singularize_ss_suffix() {$/;"	f
singularize_string_if_a_regex_will_match	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^fn singularize_string_if_a_regex_will_match() {$/;"	f
singularize_string_returns_none_option_if_no_match	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^fn singularize_string_returns_none_option_if_no_match() {$/;"	f
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^        fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:token_stream::IntoIter
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:RcVecIntoIter
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:TokenTreeIter
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:IntoIter
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:IntoPairs
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:Iter
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:IterMut
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:Pairs
size_hint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	P	implementation:PairsMut
skip	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub(crate) fn skip(self) -> Option<Cursor<'a>> {$/;"	P	implementation:Cursor
skip	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^macro_rules! skip {$/;"	M
skip	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^macro_rules! skip {$/;"	M
skip	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/whitespace.rs	/^pub(crate) fn skip(mut s: &str) -> &str {$/;"	f
skip_whitespace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn skip_whitespace(input: Cursor) -> Cursor {$/;"	f
snake_like_no_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn snake_like_no_seperator(mut accumlator: String, current_char: &char, case: &str) -> String {$/;"	f
snake_like_no_seperator_lower	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn snake_like_no_seperator_lower() {$/;"	f
snake_like_no_seperator_upper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn snake_like_no_seperator_upper() {$/;"	f
snake_like_with_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn snake_like_with_seperator(mut accumlator: String, replace_with: &str, current_char: &char, ca/;"	f
snake_like_with_seperator_lowers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn snake_like_with_seperator_lowers() {$/;"	f
snake_like_with_seperator_upper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn snake_like_with_seperator_upper() {$/;"	f
snakecase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod snakecase;$/;"	n
source_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn source_file(&self) -> SourceFile {$/;"	P	implementation:Span
source_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn source_file(&self) -> SourceFile {$/;"	P	implementation:Span
source_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn source_file(&self) -> SourceFile {$/;"	P	implementation:Span
source_text	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn source_text(&self, span: Span) -> String {$/;"	P	implementation:FileInfo
source_text	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn source_text(&self) -> Option<String> {$/;"	P	implementation:Span
source_text	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    source_text: String,$/;"	m	struct:FileInfo
source_text	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn source_text(&self) -> Option<String> {$/;"	P	implementation:Span
source_text	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn source_text(&self) -> Option<String> {$/;"	P	implementation:Span
spacing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn spacing(&self) -> Spacing {$/;"	P	implementation:Punct
spacing	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    spacing: Spacing,$/;"	m	struct:Punct
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Group
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Ident
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn span(&self) -> Span {$/;"	f	method:Literal::byte_string
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) fn span(&self) -> Span {$/;"	P	implementation:LexError
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub(crate) span: Span,$/;"	m	struct:LexError
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    span: Span,$/;"	m	struct:FileInfo
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    span: Span,$/;"	m	struct:Group
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    span: Span,$/;"	m	struct:Ident
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    span: Span,$/;"	m	struct:Literal
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Group
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Ident
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LexError
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Literal
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Punct
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:TokenTree
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    span: Span,$/;"	m	struct:Punct
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Group
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Ident
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Literal
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub(crate) fn span(&self) -> Span {$/;"	P	implementation:LexError
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn span(&self) -> Option<Span> {$/;"	P	implementation:Ident
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn span(&self) -> Option<Span> {$/;"	P	implementation:T
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn span(&self) -> Option<Span> {$/;"	P	interface:IdentFragment
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/ident_fragment.rs	/^    fn span(&self) -> Option<Span> {$/;"	f
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        span: Span,$/;"	m	struct:push_lifetime_spanned::Lifetime
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    pub fn span(&self) -> Option<Span> {$/;"	P	implementation:IdentFragmentAdapter
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn span(self) -> Span {$/;"	P	implementation:Cursor
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Error
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    span: ThreadBound<SpanRange>,$/;"	m	struct:ErrorMessage
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn span(&self) -> Option<Span> {$/;"	P	implementation:Index
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn span(&self) -> Option<Span> {$/;"	P	implementation:Member
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod span;$/;"	n
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:Lifetime
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        pub fn span(&self) -> Span {$/;"	P	implementation:value::Lit
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitBool
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitByte
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitByteStr
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitChar
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitFloat
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitInt
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:LitStr
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^    pub fn span(&self) -> &DelimSpan {$/;"	P	implementation:MacroDelimiter
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn span(&self) -> Span {$/;"	P	implementation:ParseBuffer
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^    fn span(&self) -> Span {$/;"	P	implementation:T
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/spanned.rs	/^    fn span(&self) -> Span;$/;"	P	interface:Spanned
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^        pub span: Span,$/;"	m	struct:private::WithSpan
span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub span: Span,$/;"	m	struct:Group
span_close	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn span_close(&self) -> Span {$/;"	P	implementation:Group
span_close	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span_close(&self) -> Span {$/;"	P	implementation:Group
span_close	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn span_close(&self) -> Span {$/;"	P	implementation:Group
span_of_unexpected_ignoring_nones	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^fn span_of_unexpected_ignoring_nones(mut cursor: Cursor) -> Option<Span> {$/;"	f
span_open	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn span_open(&self) -> Span {$/;"	P	implementation:Group
span_open	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn span_open(&self) -> Span {$/;"	P	implementation:Group
span_open	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn span_open(&self) -> Span {$/;"	P	implementation:Group
span_within	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn span_within(&self, span: Span) -> bool {$/;"	P	implementation:FileInfo
spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^pub mod spanned;$/;"	n
spanned	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod spanned;$/;"	n
special_cases	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^macro_rules! special_cases{$/;"	M
special_cases	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^macro_rules! special_cases{$/;"	M
split_for_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn split_for_impl(&self) -> (ImplGenerics, TypeGenerics, Option<&WhereClause>) {$/;"	P	implementation:Generics
sqlx_db	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    fn sqlx_db(&self) -> TokenStream2 {$/;"	P	implementation:DbType
start	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn start(&self) -> LineColumn {$/;"	P	implementation:Span
start	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn start(&self) -> LineColumn {$/;"	P	implementation:Span
start	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn start(&self) -> LineColumn {$/;"	P	implementation:Span
start	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    start: Span,$/;"	m	struct:SpanRange
start_of_buffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^fn start_of_buffer(cursor: Cursor) -> *const Entry {$/;"	f
starts_with	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub fn starts_with(&self, s: &str) -> bool {$/;"	P	implementation:Cursor
starts_with_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub fn starts_with_char(&self, ch: char) -> bool {$/;"	P	implementation:Cursor
starts_with_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^    pub fn starts_with_fn<Pattern>(&self, f: Pattern) -> bool$/;"	P	implementation:Cursor
state	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        state: u8,$/;"	m	struct:push_lifetime::Lifetime
state	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^        state: u8,$/;"	m	struct:push_lifetime_spanned::Lifetime
step	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    pub fn step<F, R>(&self, function: F) -> Result<R>$/;"	P	implementation:ParseBuffer
stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod stmt;$/;"	n
stmt_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    fn stmt_expr($/;"	f	module:parsing
stmt_local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    fn stmt_local(input: ParseStream, attrs: Vec<Attribute>) -> Result<Local> {$/;"	f	module:parsing
stmt_mac	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^    fn stmt_mac(input: ParseStream, attrs: Vec<Attribute>, path: Path) -> Result<StmtMacro> {$/;"	f	module:parsing
str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/constants/mod.rs	/^pub const UNACCONTABLE_WORDS: [&'static str; 202] = ["accommodation",$/;"	v
str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^impl ToTokens for str {$/;"	c
str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/export.rs	/^pub type str = help::Str;$/;"	t
stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn stream(&self) -> TokenStream {$/;"	P	implementation:Group
stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    stream: TokenStream,$/;"	m	struct:Group
stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn stream(&self) -> TokenStream {$/;"	P	implementation:Group
stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn stream(&self) -> TokenStream {$/;"	P	implementation:Group
stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    stream: proc_macro::TokenStream,$/;"	m	struct:DeferredTokenStream
string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^pub mod string;$/;"	n
string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn string(t: &str) -> Literal {$/;"	P	implementation:Literal
string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn string(string: &str) -> Literal {$/;"	P	implementation:Literal
string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn string(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn string(t: &str) -> Literal {$/;"	P	implementation:Literal
string_contains_decimal	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/numbers/ordinalize/mod.rs	/^fn string_contains_decimal(non_ordinalized_string: String) -> bool {$/;"	f
stringify_punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/custom_punctuation.rs	/^macro_rules! stringify_punct {$/;"	M
strip_attrs_pub	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/macros.rs	/^macro_rules! strip_attrs_pub {$/;"	M
subspan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn subspan<R: RangeBounds<usize>>(&self, range: R) -> Option<Span> {$/;"	f	method:Literal::byte_string
subspan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn subspan<R: RangeBounds<usize>>(&self, range: R) -> Option<Span> {$/;"	P	implementation:Literal
subspan	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn subspan<R: RangeBounds<usize>>(&self, range: R) -> Option<Span> {$/;"	P	implementation:Literal
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^pub mod suffix;$/;"	n
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        pub fn suffix(&self) -> &str {$/;"	P	implementation:value::Lit
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn suffix(&self) -> &str {$/;"	P	implementation:LitByte
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn suffix(&self) -> &str {$/;"	P	implementation:LitByteStr
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn suffix(&self) -> &str {$/;"	P	implementation:LitChar
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn suffix(&self) -> &str {$/;"	P	implementation:LitFloat
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn suffix(&self) -> &str {$/;"	P	implementation:LitInt
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn suffix(&self) -> &str {$/;"	P	implementation:LitStr
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    suffix: Box<str>,$/;"	m	struct:LitFloatRepr
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    suffix: Box<str>,$/;"	m	struct:LitIntRepr
suffix	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    suffix: Box<str>,$/;"	m	struct:LitRepr
suffixed_int_literals	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^macro_rules! suffixed_int_literals {$/;"	M
suffixed_numbers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^macro_rules! suffixed_numbers {$/;"	M
suffixed_numbers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^macro_rules! suffixed_numbers {$/;"	M
surround	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^        pub(crate) fn surround(&self, tokens: &mut TokenStream, inner: TokenStream) {$/;"	P	implementation:printing::MacroDelimiter
surround	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    pub fn surround<F>(&self, tokens: &mut TokenStream, f: F)$/;"	P	implementation:Group
sym	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    sym: String,$/;"	m	struct:Ident
table_name	/home/trey/code/sqlx-crud/sqlx-crud-macros/src/lib.rs	/^    table_name: String,$/;"	m	struct:Config
tablecase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod tablecase;$/;"	n
take_inner	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    fn take_inner(self) -> RcVecBuilder<TokenTree> {$/;"	P	implementation:TokenStream
take_until_newline_or_eof	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn take_until_newline_or_eof(input: Cursor) -> (Cursor, &str) {$/;"	f
test_char_is_seperator_dash	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_char_is_seperator_dash() {$/;"	f
test_char_is_seperator_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_char_is_seperator_space() {$/;"	f
test_char_is_seperator_underscore	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_char_is_seperator_underscore() {$/;"	f
test_char_is_seperator_when_not	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_char_is_seperator_when_not() {$/;"	f
test_char_is_uppercase_when_it_is	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_char_is_uppercase_when_it_is() {$/;"	f
test_char_is_uppercase_when_it_is_not	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_char_is_uppercase_when_it_is_not() {$/;"	f
test_first_word_or_not_inverted_not_first_word_is_inverted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_first_word_or_not_inverted_not_first_word_is_inverted() {$/;"	f
test_first_word_or_not_inverted_not_first_word_not_inverted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_first_word_or_not_inverted_not_first_word_not_inverted() {$/;"	f
test_first_word_or_not_inverted_with_first_word	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_first_word_or_not_inverted_with_first_word() {$/;"	f
test_is_not_alphanumeric_on_is_alphanumeric	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_is_not_alphanumeric_on_is_alphanumeric() {$/;"	f
test_is_not_alphanumeric_on_is_not_alphanumeric	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_is_not_alphanumeric_on_is_not_alphanumeric() {$/;"	f
test_last_char_lower_current_is_upper_or_new_word_last_char_lower_current_upper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_last_char_lower_current_is_upper_or_new_word_last_char_lower_current_upper() {$/;"	f
test_last_char_lower_current_is_upper_or_new_word_last_char_space	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_last_char_lower_current_is_upper_or_new_word_last_char_space() {$/;"	f
test_last_char_lower_current_is_upper_or_new_word_last_char_upper_current_lower	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_last_char_lower_current_is_upper_or_new_word_last_char_upper_current_lower() {$/;"	f
test_last_char_lower_current_is_upper_or_new_word_last_char_upper_current_upper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_last_char_lower_current_is_upper_or_new_word_last_char_upper_current_upper() {$/;"	f
test_last_char_lower_current_is_upper_or_new_word_with_new_word	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_last_char_lower_current_is_upper_or_new_word_with_new_word() {$/;"	f
test_needs_drop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/drops.rs	/^fn test_needs_drop() {$/;"	f
test_next_or_previous_char_is_lowercase_false	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_next_or_previous_char_is_lowercase_false() {$/;"	f
test_next_or_previous_char_is_lowercase_true	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_next_or_previous_char_is_lowercase_true() {$/;"	f
test_not_first_word_and_has_seperator_is_first_and_not_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_not_first_word_and_has_seperator_is_first_and_not_seperator() {$/;"	f
test_not_first_word_and_has_seperator_not_first_and_has_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_not_first_word_and_has_seperator_not_first_and_has_seperator() {$/;"	f
test_not_first_word_and_has_seperator_not_first_and_not_seperator	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_not_first_word_and_has_seperator_not_first_and_not_seperator() {$/;"	f
test_trim_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_trim_bad_chars() {$/;"	f
test_trim_bad_chars_when_none_are_bad	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn test_trim_bad_chars_when_none_are_bad() {$/;"	f
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^mod tests {$/;"	n
tests	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^mod tests {$/;"	n
thread	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod thread;$/;"	n
thread_id	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^    thread_id: ThreadId,$/;"	m	struct:ThreadBound
titlecase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod titlecase;$/;"	n
to_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^pub fn to_camel_case(non_camelized_string: &str) -> String {$/;"	f
to_camel_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_camel_case(&self) -> String;$/;"	P	interface:Inflector
to_case_camel_like	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^pub fn to_case_camel_like(convertable_string: &str, camel_options: CamelOptions) -> String {$/;"	f
to_case_snake_like	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^pub fn to_case_snake_like(convertable_string: &str, replace_with: &str, case: &str) -> String {$/;"	f
to_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^pub fn to_class_case(non_class_case_string: &str) -> String {$/;"	f
to_class_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_class_case(&self) -> String;$/;"	P	interface:Inflector
to_compile_error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    fn to_compile_error(&self) -> TokenStream {$/;"	P	implementation:ErrorMessage
to_compile_error	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/error.rs	/^    pub fn to_compile_error(&self) -> TokenStream {$/;"	P	implementation:Error
to_foreign_key	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_foreign_key(&self) -> String;$/;"	P	interface:Inflector
to_foreign_key	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/suffix/foreignkey/mod.rs	/^pub fn to_foreign_key(non_foreign_key_string: &str) -> String {$/;"	f
to_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/kebabcase/mod.rs	/^pub fn to_kebab_case(non_kebab_case_string: &str) -> String {$/;"	f
to_kebab_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_kebab_case(&self) -> String;$/;"	P	interface:Inflector
to_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^pub fn to_pascal_case(non_pascalized_string: &str) -> String {$/;"	f
to_pascal_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_pascal_case(&self) -> String;$/;"	P	interface:Inflector
to_plural	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_plural(&self) -> String;$/;"	P	interface:Inflector
to_plural	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/pluralize/mod.rs	/^pub fn to_plural(non_plural_string: &str) -> String {$/;"	f
to_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/screamingsnakecase/mod.rs	/^pub fn to_screaming_snake_case(non_snake_case_string: &str) -> String {$/;"	f
to_screaming_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_screaming_snake_case(&self) -> String;$/;"	P	interface:Inflector
to_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^pub fn to_sentence_case(non_sentence_case_string: &str) -> String {$/;"	f
to_sentence_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_sentence_case(&self) -> String;$/;"	P	interface:Inflector
to_singular	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_singular(&self) -> String;$/;"	P	interface:Inflector
to_singular	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/string/singularize/mod.rs	/^pub fn to_singular(non_singular_string: &str) -> String {$/;"	f
to_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^pub fn to_snake_case(non_snake_case_string: &str) -> String {$/;"	f
to_snake_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_snake_case(&self) -> String;$/;"	P	interface:Inflector
to_string	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/bigint.rs	/^    pub(crate) fn to_string(&self) -> String {$/;"	P	implementation:BigInt
to_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/tablecase/mod.rs	/^pub fn to_table_case(non_table_case_string: &str) -> String {$/;"	f
to_table_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_table_case(&self) -> String;$/;"	P	interface:Inflector
to_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^pub fn to_title_case(non_title_case_string: &str) -> String {$/;"	f
to_title_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_title_case(&self) -> String;$/;"	P	interface:Inflector
to_token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_token_stream(&self) -> TokenStream {$/;"	P	interface:ToTokens
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/lib.rs	/^mod to_tokens;$/;"	n
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/runtime.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:RepInterp
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, dst: &mut TokenStream) {$/;"	P	implementation:TokenStream
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, dst: &mut TokenStream) {$/;"	P	implementation:TokenTree
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Box
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Cow
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Group
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Ident
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Literal
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Option
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Punct
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Rc
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:String
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:T
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:bool
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:char
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:str
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.26/src/to_tokens.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream);$/;"	P	interface:ToTokens
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Attribute
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::MetaList
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/attr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::MetaNameValue
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Field
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::FieldsNamed
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::FieldsUnnamed
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/data.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Variant
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/derive.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::DeriveInput
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Arm
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprArray
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprAssign
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprAsync
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprAwait
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprBinary
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprBlock
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprBreak
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprCall
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprCast
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprClosure
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprConst
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprContinue
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprField
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprForLoop
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprGroup
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprIf
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprIndex
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprInfer
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprLet
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprLit
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprLoop
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprMatch
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprMethodCall
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprParen
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprPath
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprRange
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprReference
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprRepeat
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprReturn
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprStruct
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprTry
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprTryBlock
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprTuple
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprUnary
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprUnsafe
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprWhile
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ExprYield
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::FieldValue
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Index
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Label
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Member
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::RangeLimits
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/file.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::File
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::BoundLifetimes
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ConstParam
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Generics
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ImplGenerics
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LifetimeParam
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PredicateLifetime
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PredicateType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TraitBound
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TraitBoundModifier
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Turbofish
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeGenerics
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeParam
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::WhereClause
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ForeignItemFn
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ForeignItemMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ForeignItemStatic
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ForeignItemType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ImplItemConst
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ImplItemFn
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ImplItemMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ImplItemType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemConst
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemEnum
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemExternCrate
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemFn
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemForeignMod
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemImpl
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemMod
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemStatic
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemStruct
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemTrait
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemTraitAlias
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemUnion
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ItemUse
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Receiver
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Signature
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::StaticMutability
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TraitItemConst
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TraitItemFn
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TraitItemMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TraitItemType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::UseGlob
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::UseGroup
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::UseName
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::UsePath
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::UseRename
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Variadic
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lifetime.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Lifetime
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitBool
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitByte
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitByteStr
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitChar
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitFloat
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitInt
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::LitStr
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/mac.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Macro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::BinOp
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/op.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::UnOp
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::FieldPat
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatIdent
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatOr
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatParen
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatReference
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatRest
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatSlice
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatStruct
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatTuple
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatTupleStruct
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/pat.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PatWild
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::AngleBracketedGenericArguments
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::AssocConst
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::AssocType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Constraint
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::GenericArgument
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ParenthesizedGenericArguments
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Path
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PathArguments
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/path.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::PathSegment
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/print.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	f
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	f	module:printing
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::VisRestricted
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/restriction.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Visibility
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Block
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Local
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Stmt
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/stmt.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::StmtMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/token.rs	/^    fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:Underscore
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::Abi
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::BareFnArg
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::BareVariadic
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::ReturnType
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeArray
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeBareFn
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeGroup
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeImplTrait
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeInfer
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeMacro
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeNever
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeParen
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypePath
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypePtr
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeReference
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeSlice
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeTraitObject
to_tokens	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        fn to_tokens(&self, tokens: &mut TokenStream) {$/;"	P	implementation:printing::TypeTuple
to_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^pub fn to_train_case(non_train_case_string: &str) -> String {$/;"	f
to_train_case	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs	/^    fn to_train_case(&self) -> String;$/;"	P	interface:Inflector
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub token: token::Brace,$/;"	m	struct:Braces
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub token: token::Bracket,$/;"	m	struct:Brackets
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub token: token::Group,$/;"	m	struct:Group
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/group.rs	/^    pub token: token::Paren,$/;"	m	struct:Parens
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^pub mod token;$/;"	n
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Ident {$/;"	P	implementation:LitBool
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Literal {$/;"	P	implementation:LitByte
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Literal {$/;"	P	implementation:LitByteStr
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Literal {$/;"	P	implementation:LitChar
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Literal {$/;"	P	implementation:LitFloat
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Literal {$/;"	P	implementation:LitInt
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn token(&self) -> Literal {$/;"	P	implementation:LitStr
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    token: Literal,$/;"	m	struct:LitFloatRepr
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    token: Literal,$/;"	m	struct:LitIntRepr
token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    token: Literal,$/;"	m	struct:LitRepr
token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^pub mod token_stream {$/;"	n
token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^pub(crate) fn token_stream(mut input: Cursor) -> Result<TokenStream, LexError> {$/;"	f
token_stream	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn token_stream(self) -> TokenStream {$/;"	P	implementation:Cursor
token_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/buffer.rs	/^    pub fn token_tree(self) -> Option<(TokenTree, Cursor<'a>)> {$/;"	P	implementation:Cursor
tokens_to_parse_buffer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^fn tokens_to_parse_buffer(tokens: &TokenBuffer) -> ParseBuffer {$/;"	f
trailer_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn trailer_expr($/;"	f	module:parsing
trailer_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn trailer_expr(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
trailer_helper	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn trailer_helper(input: ParseStream, mut e: Expr) -> Result<Expr> {$/;"	f	module:parsing
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn trailing_bad_chars() {$/;"	f	module:tests
trailing_punct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn trailing_punct(&self) -> bool {$/;"	P	implementation:Punctuated
traincase	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/mod.rs	/^pub mod traincase;$/;"	n
trim_right	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/case/mod.rs	/^fn trim_right(convertable_string: &str) -> &str {$/;"	f
tt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod tt;$/;"	n
ty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        ty: Option<(Token![=], Type)>,$/;"	m	struct:parsing::FlexibleItemType
ty	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod ty;$/;"	n
type_params	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn type_params(&self) -> TypeParams {$/;"	P	implementation:Generics
type_params_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/generics.rs	/^    pub fn type_params_mut(&mut self) -> TypeParamsMut {$/;"	P	implementation:Generics
type_token	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        type_token: Token![type],$/;"	m	struct:parsing::FlexibleItemType
unary_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn unary_expr(input: ParseStream) -> Result<Expr> {$/;"	f	module:parsing
unary_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn unary_expr(input: ParseStream, allow_struct: AllowStruct) -> Result<Expr> {$/;"	f	module:parsing
unexpected	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/parse.rs	/^    unexpected: Cell<Option<Rc<Cell<Unexpected>>>>,$/;"	m	struct:ParseBuffer
unforce	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^pub fn unforce() {$/;"	f
unforce_fallback	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/detection.rs	/^pub(crate) fn unforce_fallback() {$/;"	f
unraw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    fn unraw(&self) -> Ident {$/;"	P	implementation:Ident
unraw	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ext.rs	/^    fn unraw(&self) -> Ident;$/;"	P	interface:IdentExt
unstable	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn unstable(self) -> proc_macro::Span {$/;"	P	implementation:Span
unsuffixed_int_literals	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^macro_rules! unsuffixed_int_literals {$/;"	M
unsuffixed_integers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^macro_rules! unsuffixed_integers {$/;"	M
unsuffixed_numbers	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^macro_rules! unsuffixed_numbers {$/;"	M
unwrap	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/lib.rs	/^    pub fn unwrap(self) -> proc_macro::Span {$/;"	P	implementation:Span
unwrap	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    pub fn unwrap(self) -> proc_macro::Span {$/;"	P	implementation:Span
unwrap_nightly	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn unwrap_nightly(self) -> proc_macro::Group {$/;"	P	implementation:Group
unwrap_nightly	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn unwrap_nightly(self) -> proc_macro::Ident {$/;"	P	implementation:Ident
unwrap_nightly	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn unwrap_nightly(self) -> proc_macro::Literal {$/;"	P	implementation:Literal
unwrap_nightly	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn unwrap_nightly(self) -> proc_macro::Span {$/;"	P	implementation:Span
unwrap_nightly	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn unwrap_nightly(self) -> proc_macro::TokenStream {$/;"	P	implementation:TokenStream
unwrap_stable	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/wrapper.rs	/^    fn unwrap_stable(self) -> fallback::TokenStream {$/;"	P	implementation:TokenStream
usize_to_u32	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/convert.rs	/^pub(crate) fn usize_to_u32(u: usize) -> Option<u32> {$/;"	f
validate_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^fn validate_ident(string: &str, raw: bool) {$/;"	f
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/marker.rs	/^mod value {$/;"	n
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn value(&self) -> String {$/;"	P	implementation:LitStr
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn value(&self) -> Vec<u8> {$/;"	P	implementation:LitByteStr
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn value(&self) -> bool {$/;"	P	implementation:LitBool
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn value(&self) -> char {$/;"	P	implementation:LitChar
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^    pub fn value(&self) -> u8 {$/;"	P	implementation:LitByte
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lit.rs	/^mod value {$/;"	n
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/meta.rs	/^    pub fn value(&self) -> Result<ParseStream<'a>> {$/;"	P	implementation:ParseNestedMeta
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn value(&self) -> &T {$/;"	P	implementation:Pair
value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/thread.rs	/^    value: T,$/;"	m	struct:ThreadBound
value_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/punctuated.rs	/^    pub fn value_mut(&mut self) -> &mut T {$/;"	P	implementation:Pair
verbatim	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod verbatim;$/;"	n
vis	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/item.rs	/^        vis: Visibility,$/;"	m	struct:parsing::FlexibleItemType
visit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    pub mod visit;$/;"	n	module:gen
visit_abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_abi(&mut self, i: &'ast Abi) {$/;"	P	interface:Visit
visit_abi	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_abi<'ast, V>(v: &mut V, node: &'ast Abi)$/;"	f
visit_abi_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_abi_mut(&mut self, i: &mut Abi) {$/;"	P	interface:VisitMut
visit_abi_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_abi_mut<V>(v: &mut V, node: &mut Abi)$/;"	f
visit_angle_bracketed_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_angle_bracketed_generic_arguments($/;"	P	interface:Visit
visit_angle_bracketed_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_angle_bracketed_generic_arguments<'ast, V>($/;"	f
visit_angle_bracketed_generic_arguments_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_angle_bracketed_generic_arguments_mut($/;"	P	interface:VisitMut
visit_angle_bracketed_generic_arguments_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_angle_bracketed_generic_arguments_mut<V>($/;"	f
visit_arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_arm(&mut self, i: &'ast Arm) {$/;"	P	interface:Visit
visit_arm	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_arm<'ast, V>(v: &mut V, node: &'ast Arm)$/;"	f
visit_arm_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_arm_mut(&mut self, i: &mut Arm) {$/;"	P	interface:VisitMut
visit_arm_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_arm_mut<V>(v: &mut V, node: &mut Arm)$/;"	f
visit_assoc_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_assoc_const(&mut self, i: &'ast AssocConst) {$/;"	P	interface:Visit
visit_assoc_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_assoc_const<'ast, V>(v: &mut V, node: &'ast AssocConst)$/;"	f
visit_assoc_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_assoc_const_mut(&mut self, i: &mut AssocConst) {$/;"	P	interface:VisitMut
visit_assoc_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_assoc_const_mut<V>(v: &mut V, node: &mut AssocConst)$/;"	f
visit_assoc_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_assoc_type(&mut self, i: &'ast AssocType) {$/;"	P	interface:Visit
visit_assoc_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_assoc_type<'ast, V>(v: &mut V, node: &'ast AssocType)$/;"	f
visit_assoc_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_assoc_type_mut(&mut self, i: &mut AssocType) {$/;"	P	interface:VisitMut
visit_assoc_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_assoc_type_mut<V>(v: &mut V, node: &mut AssocType)$/;"	f
visit_attr_style	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_attr_style(&mut self, i: &'ast AttrStyle) {$/;"	P	interface:Visit
visit_attr_style	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_attr_style<'ast, V>(v: &mut V, node: &'ast AttrStyle)$/;"	f
visit_attr_style_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_attr_style_mut(&mut self, i: &mut AttrStyle) {$/;"	P	interface:VisitMut
visit_attr_style_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_attr_style_mut<V>(v: &mut V, node: &mut AttrStyle)$/;"	f
visit_attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_attribute(&mut self, i: &'ast Attribute) {$/;"	P	interface:Visit
visit_attribute	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_attribute<'ast, V>(v: &mut V, node: &'ast Attribute)$/;"	f
visit_attribute_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_attribute_mut(&mut self, i: &mut Attribute) {$/;"	P	interface:VisitMut
visit_attribute_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_attribute_mut<V>(v: &mut V, node: &mut Attribute)$/;"	f
visit_bare_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_bare_fn_arg(&mut self, i: &'ast BareFnArg) {$/;"	P	interface:Visit
visit_bare_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_bare_fn_arg<'ast, V>(v: &mut V, node: &'ast BareFnArg)$/;"	f
visit_bare_fn_arg_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_bare_fn_arg_mut(&mut self, i: &mut BareFnArg) {$/;"	P	interface:VisitMut
visit_bare_fn_arg_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_bare_fn_arg_mut<V>(v: &mut V, node: &mut BareFnArg)$/;"	f
visit_bare_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_bare_variadic(&mut self, i: &'ast BareVariadic) {$/;"	P	interface:Visit
visit_bare_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_bare_variadic<'ast, V>(v: &mut V, node: &'ast BareVariadic)$/;"	f
visit_bare_variadic_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_bare_variadic_mut(&mut self, i: &mut BareVariadic) {$/;"	P	interface:VisitMut
visit_bare_variadic_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_bare_variadic_mut<V>(v: &mut V, node: &mut BareVariadic)$/;"	f
visit_bin_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_bin_op(&mut self, i: &'ast BinOp) {$/;"	P	interface:Visit
visit_bin_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_bin_op<'ast, V>(v: &mut V, node: &'ast BinOp)$/;"	f
visit_bin_op_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_bin_op_mut(&mut self, i: &mut BinOp) {$/;"	P	interface:VisitMut
visit_bin_op_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_bin_op_mut<V>(v: &mut V, node: &mut BinOp)$/;"	f
visit_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_block(&mut self, i: &'ast Block) {$/;"	P	interface:Visit
visit_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_block<'ast, V>(v: &mut V, node: &'ast Block)$/;"	f
visit_block_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_block_mut(&mut self, i: &mut Block) {$/;"	P	interface:VisitMut
visit_block_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_block_mut<V>(v: &mut V, node: &mut Block)$/;"	f
visit_bound_lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_bound_lifetimes(&mut self, i: &'ast BoundLifetimes) {$/;"	P	interface:Visit
visit_bound_lifetimes	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_bound_lifetimes<'ast, V>(v: &mut V, node: &'ast BoundLifetimes)$/;"	f
visit_bound_lifetimes_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_bound_lifetimes_mut(&mut self, i: &mut BoundLifetimes) {$/;"	P	interface:VisitMut
visit_bound_lifetimes_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_bound_lifetimes_mut<V>(v: &mut V, node: &mut BoundLifetimes)$/;"	f
visit_const_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_const_param(&mut self, i: &'ast ConstParam) {$/;"	P	interface:Visit
visit_const_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_const_param<'ast, V>(v: &mut V, node: &'ast ConstParam)$/;"	f
visit_const_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_const_param_mut(&mut self, i: &mut ConstParam) {$/;"	P	interface:VisitMut
visit_const_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_const_param_mut<V>(v: &mut V, node: &mut ConstParam)$/;"	f
visit_constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_constraint(&mut self, i: &'ast Constraint) {$/;"	P	interface:Visit
visit_constraint	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_constraint<'ast, V>(v: &mut V, node: &'ast Constraint)$/;"	f
visit_constraint_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_constraint_mut(&mut self, i: &mut Constraint) {$/;"	P	interface:VisitMut
visit_constraint_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_constraint_mut<V>(v: &mut V, node: &mut Constraint)$/;"	f
visit_data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_data(&mut self, i: &'ast Data) {$/;"	P	interface:Visit
visit_data	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_data<'ast, V>(v: &mut V, node: &'ast Data)$/;"	f
visit_data_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_data_enum(&mut self, i: &'ast DataEnum) {$/;"	P	interface:Visit
visit_data_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_data_enum<'ast, V>(v: &mut V, node: &'ast DataEnum)$/;"	f
visit_data_enum_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_data_enum_mut(&mut self, i: &mut DataEnum) {$/;"	P	interface:VisitMut
visit_data_enum_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_data_enum_mut<V>(v: &mut V, node: &mut DataEnum)$/;"	f
visit_data_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_data_mut(&mut self, i: &mut Data) {$/;"	P	interface:VisitMut
visit_data_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_data_mut<V>(v: &mut V, node: &mut Data)$/;"	f
visit_data_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_data_struct(&mut self, i: &'ast DataStruct) {$/;"	P	interface:Visit
visit_data_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_data_struct<'ast, V>(v: &mut V, node: &'ast DataStruct)$/;"	f
visit_data_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_data_struct_mut(&mut self, i: &mut DataStruct) {$/;"	P	interface:VisitMut
visit_data_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_data_struct_mut<V>(v: &mut V, node: &mut DataStruct)$/;"	f
visit_data_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_data_union(&mut self, i: &'ast DataUnion) {$/;"	P	interface:Visit
visit_data_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_data_union<'ast, V>(v: &mut V, node: &'ast DataUnion)$/;"	f
visit_data_union_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_data_union_mut(&mut self, i: &mut DataUnion) {$/;"	P	interface:VisitMut
visit_data_union_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_data_union_mut<V>(v: &mut V, node: &mut DataUnion)$/;"	f
visit_derive_input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_derive_input(&mut self, i: &'ast DeriveInput) {$/;"	P	interface:Visit
visit_derive_input	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_derive_input<'ast, V>(v: &mut V, node: &'ast DeriveInput)$/;"	f
visit_derive_input_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_derive_input_mut(&mut self, i: &mut DeriveInput) {$/;"	P	interface:VisitMut
visit_derive_input_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_derive_input_mut<V>(v: &mut V, node: &mut DeriveInput)$/;"	f
visit_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr(&mut self, i: &'ast Expr) {$/;"	P	interface:Visit
visit_expr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr<'ast, V>(v: &mut V, node: &'ast Expr)$/;"	f
visit_expr_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_array(&mut self, i: &'ast ExprArray) {$/;"	P	interface:Visit
visit_expr_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_array<'ast, V>(v: &mut V, node: &'ast ExprArray)$/;"	f
visit_expr_array_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_array_mut(&mut self, i: &mut ExprArray) {$/;"	P	interface:VisitMut
visit_expr_array_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_array_mut<V>(v: &mut V, node: &mut ExprArray)$/;"	f
visit_expr_assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_assign(&mut self, i: &'ast ExprAssign) {$/;"	P	interface:Visit
visit_expr_assign	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_assign<'ast, V>(v: &mut V, node: &'ast ExprAssign)$/;"	f
visit_expr_assign_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_assign_mut(&mut self, i: &mut ExprAssign) {$/;"	P	interface:VisitMut
visit_expr_assign_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_assign_mut<V>(v: &mut V, node: &mut ExprAssign)$/;"	f
visit_expr_async	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_async(&mut self, i: &'ast ExprAsync) {$/;"	P	interface:Visit
visit_expr_async	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_async<'ast, V>(v: &mut V, node: &'ast ExprAsync)$/;"	f
visit_expr_async_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_async_mut(&mut self, i: &mut ExprAsync) {$/;"	P	interface:VisitMut
visit_expr_async_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_async_mut<V>(v: &mut V, node: &mut ExprAsync)$/;"	f
visit_expr_await	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_await(&mut self, i: &'ast ExprAwait) {$/;"	P	interface:Visit
visit_expr_await	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_await<'ast, V>(v: &mut V, node: &'ast ExprAwait)$/;"	f
visit_expr_await_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_await_mut(&mut self, i: &mut ExprAwait) {$/;"	P	interface:VisitMut
visit_expr_await_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_await_mut<V>(v: &mut V, node: &mut ExprAwait)$/;"	f
visit_expr_binary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_binary(&mut self, i: &'ast ExprBinary) {$/;"	P	interface:Visit
visit_expr_binary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_binary<'ast, V>(v: &mut V, node: &'ast ExprBinary)$/;"	f
visit_expr_binary_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_binary_mut(&mut self, i: &mut ExprBinary) {$/;"	P	interface:VisitMut
visit_expr_binary_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_binary_mut<V>(v: &mut V, node: &mut ExprBinary)$/;"	f
visit_expr_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_block(&mut self, i: &'ast ExprBlock) {$/;"	P	interface:Visit
visit_expr_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_block<'ast, V>(v: &mut V, node: &'ast ExprBlock)$/;"	f
visit_expr_block_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_block_mut(&mut self, i: &mut ExprBlock) {$/;"	P	interface:VisitMut
visit_expr_block_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_block_mut<V>(v: &mut V, node: &mut ExprBlock)$/;"	f
visit_expr_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_break(&mut self, i: &'ast ExprBreak) {$/;"	P	interface:Visit
visit_expr_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_break<'ast, V>(v: &mut V, node: &'ast ExprBreak)$/;"	f
visit_expr_break_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_break_mut(&mut self, i: &mut ExprBreak) {$/;"	P	interface:VisitMut
visit_expr_break_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_break_mut<V>(v: &mut V, node: &mut ExprBreak)$/;"	f
visit_expr_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_call(&mut self, i: &'ast ExprCall) {$/;"	P	interface:Visit
visit_expr_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_call<'ast, V>(v: &mut V, node: &'ast ExprCall)$/;"	f
visit_expr_call_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_call_mut(&mut self, i: &mut ExprCall) {$/;"	P	interface:VisitMut
visit_expr_call_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_call_mut<V>(v: &mut V, node: &mut ExprCall)$/;"	f
visit_expr_cast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_cast(&mut self, i: &'ast ExprCast) {$/;"	P	interface:Visit
visit_expr_cast	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_cast<'ast, V>(v: &mut V, node: &'ast ExprCast)$/;"	f
visit_expr_cast_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_cast_mut(&mut self, i: &mut ExprCast) {$/;"	P	interface:VisitMut
visit_expr_cast_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_cast_mut<V>(v: &mut V, node: &mut ExprCast)$/;"	f
visit_expr_closure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_closure(&mut self, i: &'ast ExprClosure) {$/;"	P	interface:Visit
visit_expr_closure	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_closure<'ast, V>(v: &mut V, node: &'ast ExprClosure)$/;"	f
visit_expr_closure_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_closure_mut(&mut self, i: &mut ExprClosure) {$/;"	P	interface:VisitMut
visit_expr_closure_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_closure_mut<V>(v: &mut V, node: &mut ExprClosure)$/;"	f
visit_expr_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_const(&mut self, i: &'ast ExprConst) {$/;"	P	interface:Visit
visit_expr_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_const<'ast, V>(v: &mut V, node: &'ast ExprConst)$/;"	f
visit_expr_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_const_mut(&mut self, i: &mut ExprConst) {$/;"	P	interface:VisitMut
visit_expr_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_const_mut<V>(v: &mut V, node: &mut ExprConst)$/;"	f
visit_expr_continue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_continue(&mut self, i: &'ast ExprContinue) {$/;"	P	interface:Visit
visit_expr_continue	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_continue<'ast, V>(v: &mut V, node: &'ast ExprContinue)$/;"	f
visit_expr_continue_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_continue_mut(&mut self, i: &mut ExprContinue) {$/;"	P	interface:VisitMut
visit_expr_continue_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_continue_mut<V>(v: &mut V, node: &mut ExprContinue)$/;"	f
visit_expr_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_field(&mut self, i: &'ast ExprField) {$/;"	P	interface:Visit
visit_expr_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_field<'ast, V>(v: &mut V, node: &'ast ExprField)$/;"	f
visit_expr_field_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_field_mut(&mut self, i: &mut ExprField) {$/;"	P	interface:VisitMut
visit_expr_field_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_field_mut<V>(v: &mut V, node: &mut ExprField)$/;"	f
visit_expr_for_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_for_loop(&mut self, i: &'ast ExprForLoop) {$/;"	P	interface:Visit
visit_expr_for_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_for_loop<'ast, V>(v: &mut V, node: &'ast ExprForLoop)$/;"	f
visit_expr_for_loop_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_for_loop_mut(&mut self, i: &mut ExprForLoop) {$/;"	P	interface:VisitMut
visit_expr_for_loop_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_for_loop_mut<V>(v: &mut V, node: &mut ExprForLoop)$/;"	f
visit_expr_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_group(&mut self, i: &'ast ExprGroup) {$/;"	P	interface:Visit
visit_expr_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_group<'ast, V>(v: &mut V, node: &'ast ExprGroup)$/;"	f
visit_expr_group_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_group_mut(&mut self, i: &mut ExprGroup) {$/;"	P	interface:VisitMut
visit_expr_group_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_group_mut<V>(v: &mut V, node: &mut ExprGroup)$/;"	f
visit_expr_if	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_if(&mut self, i: &'ast ExprIf) {$/;"	P	interface:Visit
visit_expr_if	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_if<'ast, V>(v: &mut V, node: &'ast ExprIf)$/;"	f
visit_expr_if_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_if_mut(&mut self, i: &mut ExprIf) {$/;"	P	interface:VisitMut
visit_expr_if_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_if_mut<V>(v: &mut V, node: &mut ExprIf)$/;"	f
visit_expr_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_index(&mut self, i: &'ast ExprIndex) {$/;"	P	interface:Visit
visit_expr_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_index<'ast, V>(v: &mut V, node: &'ast ExprIndex)$/;"	f
visit_expr_index_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_index_mut(&mut self, i: &mut ExprIndex) {$/;"	P	interface:VisitMut
visit_expr_index_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_index_mut<V>(v: &mut V, node: &mut ExprIndex)$/;"	f
visit_expr_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_infer(&mut self, i: &'ast ExprInfer) {$/;"	P	interface:Visit
visit_expr_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_infer<'ast, V>(v: &mut V, node: &'ast ExprInfer)$/;"	f
visit_expr_infer_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_infer_mut(&mut self, i: &mut ExprInfer) {$/;"	P	interface:VisitMut
visit_expr_infer_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_infer_mut<V>(v: &mut V, node: &mut ExprInfer)$/;"	f
visit_expr_let	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_let(&mut self, i: &'ast ExprLet) {$/;"	P	interface:Visit
visit_expr_let	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_let<'ast, V>(v: &mut V, node: &'ast ExprLet)$/;"	f
visit_expr_let_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_let_mut(&mut self, i: &mut ExprLet) {$/;"	P	interface:VisitMut
visit_expr_let_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_let_mut<V>(v: &mut V, node: &mut ExprLet)$/;"	f
visit_expr_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_lit(&mut self, i: &'ast ExprLit) {$/;"	P	interface:Visit
visit_expr_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_lit<'ast, V>(v: &mut V, node: &'ast ExprLit)$/;"	f
visit_expr_lit_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_lit_mut(&mut self, i: &mut ExprLit) {$/;"	P	interface:VisitMut
visit_expr_lit_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_lit_mut<V>(v: &mut V, node: &mut ExprLit)$/;"	f
visit_expr_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_loop(&mut self, i: &'ast ExprLoop) {$/;"	P	interface:Visit
visit_expr_loop	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_loop<'ast, V>(v: &mut V, node: &'ast ExprLoop)$/;"	f
visit_expr_loop_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_loop_mut(&mut self, i: &mut ExprLoop) {$/;"	P	interface:VisitMut
visit_expr_loop_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_loop_mut<V>(v: &mut V, node: &mut ExprLoop)$/;"	f
visit_expr_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_macro(&mut self, i: &'ast ExprMacro) {$/;"	P	interface:Visit
visit_expr_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_macro<'ast, V>(v: &mut V, node: &'ast ExprMacro)$/;"	f
visit_expr_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_macro_mut(&mut self, i: &mut ExprMacro) {$/;"	P	interface:VisitMut
visit_expr_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_macro_mut<V>(v: &mut V, node: &mut ExprMacro)$/;"	f
visit_expr_match	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_match(&mut self, i: &'ast ExprMatch) {$/;"	P	interface:Visit
visit_expr_match	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_match<'ast, V>(v: &mut V, node: &'ast ExprMatch)$/;"	f
visit_expr_match_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_match_mut(&mut self, i: &mut ExprMatch) {$/;"	P	interface:VisitMut
visit_expr_match_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_match_mut<V>(v: &mut V, node: &mut ExprMatch)$/;"	f
visit_expr_method_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_method_call(&mut self, i: &'ast ExprMethodCall) {$/;"	P	interface:Visit
visit_expr_method_call	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_method_call<'ast, V>(v: &mut V, node: &'ast ExprMethodCall)$/;"	f
visit_expr_method_call_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_method_call_mut(&mut self, i: &mut ExprMethodCall) {$/;"	P	interface:VisitMut
visit_expr_method_call_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_method_call_mut<V>(v: &mut V, node: &mut ExprMethodCall)$/;"	f
visit_expr_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_mut(&mut self, i: &mut Expr) {$/;"	P	interface:VisitMut
visit_expr_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_mut<V>(v: &mut V, node: &mut Expr)$/;"	f
visit_expr_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_paren(&mut self, i: &'ast ExprParen) {$/;"	P	interface:Visit
visit_expr_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_paren<'ast, V>(v: &mut V, node: &'ast ExprParen)$/;"	f
visit_expr_paren_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_paren_mut(&mut self, i: &mut ExprParen) {$/;"	P	interface:VisitMut
visit_expr_paren_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_paren_mut<V>(v: &mut V, node: &mut ExprParen)$/;"	f
visit_expr_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_path(&mut self, i: &'ast ExprPath) {$/;"	P	interface:Visit
visit_expr_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_path<'ast, V>(v: &mut V, node: &'ast ExprPath)$/;"	f
visit_expr_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_path_mut(&mut self, i: &mut ExprPath) {$/;"	P	interface:VisitMut
visit_expr_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_path_mut<V>(v: &mut V, node: &mut ExprPath)$/;"	f
visit_expr_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_range(&mut self, i: &'ast ExprRange) {$/;"	P	interface:Visit
visit_expr_range	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_range<'ast, V>(v: &mut V, node: &'ast ExprRange)$/;"	f
visit_expr_range_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_range_mut(&mut self, i: &mut ExprRange) {$/;"	P	interface:VisitMut
visit_expr_range_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_range_mut<V>(v: &mut V, node: &mut ExprRange)$/;"	f
visit_expr_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_reference(&mut self, i: &'ast ExprReference) {$/;"	P	interface:Visit
visit_expr_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_reference<'ast, V>(v: &mut V, node: &'ast ExprReference)$/;"	f
visit_expr_reference_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_reference_mut(&mut self, i: &mut ExprReference) {$/;"	P	interface:VisitMut
visit_expr_reference_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_reference_mut<V>(v: &mut V, node: &mut ExprReference)$/;"	f
visit_expr_repeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_repeat(&mut self, i: &'ast ExprRepeat) {$/;"	P	interface:Visit
visit_expr_repeat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_repeat<'ast, V>(v: &mut V, node: &'ast ExprRepeat)$/;"	f
visit_expr_repeat_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_repeat_mut(&mut self, i: &mut ExprRepeat) {$/;"	P	interface:VisitMut
visit_expr_repeat_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_repeat_mut<V>(v: &mut V, node: &mut ExprRepeat)$/;"	f
visit_expr_return	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_return(&mut self, i: &'ast ExprReturn) {$/;"	P	interface:Visit
visit_expr_return	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_return<'ast, V>(v: &mut V, node: &'ast ExprReturn)$/;"	f
visit_expr_return_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_return_mut(&mut self, i: &mut ExprReturn) {$/;"	P	interface:VisitMut
visit_expr_return_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_return_mut<V>(v: &mut V, node: &mut ExprReturn)$/;"	f
visit_expr_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_struct(&mut self, i: &'ast ExprStruct) {$/;"	P	interface:Visit
visit_expr_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_struct<'ast, V>(v: &mut V, node: &'ast ExprStruct)$/;"	f
visit_expr_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_struct_mut(&mut self, i: &mut ExprStruct) {$/;"	P	interface:VisitMut
visit_expr_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_struct_mut<V>(v: &mut V, node: &mut ExprStruct)$/;"	f
visit_expr_try	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_try(&mut self, i: &'ast ExprTry) {$/;"	P	interface:Visit
visit_expr_try	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_try<'ast, V>(v: &mut V, node: &'ast ExprTry)$/;"	f
visit_expr_try_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_try_block(&mut self, i: &'ast ExprTryBlock) {$/;"	P	interface:Visit
visit_expr_try_block	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_try_block<'ast, V>(v: &mut V, node: &'ast ExprTryBlock)$/;"	f
visit_expr_try_block_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_try_block_mut(&mut self, i: &mut ExprTryBlock) {$/;"	P	interface:VisitMut
visit_expr_try_block_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_try_block_mut<V>(v: &mut V, node: &mut ExprTryBlock)$/;"	f
visit_expr_try_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_try_mut(&mut self, i: &mut ExprTry) {$/;"	P	interface:VisitMut
visit_expr_try_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_try_mut<V>(v: &mut V, node: &mut ExprTry)$/;"	f
visit_expr_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_tuple(&mut self, i: &'ast ExprTuple) {$/;"	P	interface:Visit
visit_expr_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_tuple<'ast, V>(v: &mut V, node: &'ast ExprTuple)$/;"	f
visit_expr_tuple_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_tuple_mut(&mut self, i: &mut ExprTuple) {$/;"	P	interface:VisitMut
visit_expr_tuple_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_tuple_mut<V>(v: &mut V, node: &mut ExprTuple)$/;"	f
visit_expr_unary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_unary(&mut self, i: &'ast ExprUnary) {$/;"	P	interface:Visit
visit_expr_unary	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_unary<'ast, V>(v: &mut V, node: &'ast ExprUnary)$/;"	f
visit_expr_unary_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_unary_mut(&mut self, i: &mut ExprUnary) {$/;"	P	interface:VisitMut
visit_expr_unary_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_unary_mut<V>(v: &mut V, node: &mut ExprUnary)$/;"	f
visit_expr_unsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_unsafe(&mut self, i: &'ast ExprUnsafe) {$/;"	P	interface:Visit
visit_expr_unsafe	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_unsafe<'ast, V>(v: &mut V, node: &'ast ExprUnsafe)$/;"	f
visit_expr_unsafe_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_unsafe_mut(&mut self, i: &mut ExprUnsafe) {$/;"	P	interface:VisitMut
visit_expr_unsafe_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_unsafe_mut<V>(v: &mut V, node: &mut ExprUnsafe)$/;"	f
visit_expr_while	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_while(&mut self, i: &'ast ExprWhile) {$/;"	P	interface:Visit
visit_expr_while	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_while<'ast, V>(v: &mut V, node: &'ast ExprWhile)$/;"	f
visit_expr_while_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_while_mut(&mut self, i: &mut ExprWhile) {$/;"	P	interface:VisitMut
visit_expr_while_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_while_mut<V>(v: &mut V, node: &mut ExprWhile)$/;"	f
visit_expr_yield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_expr_yield(&mut self, i: &'ast ExprYield) {$/;"	P	interface:Visit
visit_expr_yield	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_expr_yield<'ast, V>(v: &mut V, node: &'ast ExprYield)$/;"	f
visit_expr_yield_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_expr_yield_mut(&mut self, i: &mut ExprYield) {$/;"	P	interface:VisitMut
visit_expr_yield_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_expr_yield_mut<V>(v: &mut V, node: &mut ExprYield)$/;"	f
visit_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_field(&mut self, i: &'ast Field) {$/;"	P	interface:Visit
visit_field	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_field<'ast, V>(v: &mut V, node: &'ast Field)$/;"	f
visit_field_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_field_mut(&mut self, i: &mut Field) {$/;"	P	interface:VisitMut
visit_field_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_field_mut<V>(v: &mut V, node: &mut Field)$/;"	f
visit_field_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_field_mutability(&mut self, i: &'ast FieldMutability) {$/;"	P	interface:Visit
visit_field_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_field_mutability<'ast, V>(v: &mut V, node: &'ast FieldMutability)$/;"	f
visit_field_mutability_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_field_mutability_mut(&mut self, i: &mut FieldMutability) {$/;"	P	interface:VisitMut
visit_field_mutability_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_field_mutability_mut<V>(v: &mut V, node: &mut FieldMutability)$/;"	f
visit_field_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_field_pat(&mut self, i: &'ast FieldPat) {$/;"	P	interface:Visit
visit_field_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_field_pat<'ast, V>(v: &mut V, node: &'ast FieldPat)$/;"	f
visit_field_pat_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_field_pat_mut(&mut self, i: &mut FieldPat) {$/;"	P	interface:VisitMut
visit_field_pat_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_field_pat_mut<V>(v: &mut V, node: &mut FieldPat)$/;"	f
visit_field_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_field_value(&mut self, i: &'ast FieldValue) {$/;"	P	interface:Visit
visit_field_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_field_value<'ast, V>(v: &mut V, node: &'ast FieldValue)$/;"	f
visit_field_value_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_field_value_mut(&mut self, i: &mut FieldValue) {$/;"	P	interface:VisitMut
visit_field_value_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_field_value_mut<V>(v: &mut V, node: &mut FieldValue)$/;"	f
visit_fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_fields(&mut self, i: &'ast Fields) {$/;"	P	interface:Visit
visit_fields	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_fields<'ast, V>(v: &mut V, node: &'ast Fields)$/;"	f
visit_fields_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_fields_mut(&mut self, i: &mut Fields) {$/;"	P	interface:VisitMut
visit_fields_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_fields_mut<V>(v: &mut V, node: &mut Fields)$/;"	f
visit_fields_named	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_fields_named(&mut self, i: &'ast FieldsNamed) {$/;"	P	interface:Visit
visit_fields_named	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_fields_named<'ast, V>(v: &mut V, node: &'ast FieldsNamed)$/;"	f
visit_fields_named_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_fields_named_mut(&mut self, i: &mut FieldsNamed) {$/;"	P	interface:VisitMut
visit_fields_named_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_fields_named_mut<V>(v: &mut V, node: &mut FieldsNamed)$/;"	f
visit_fields_unnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_fields_unnamed(&mut self, i: &'ast FieldsUnnamed) {$/;"	P	interface:Visit
visit_fields_unnamed	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_fields_unnamed<'ast, V>(v: &mut V, node: &'ast FieldsUnnamed)$/;"	f
visit_fields_unnamed_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_fields_unnamed_mut(&mut self, i: &mut FieldsUnnamed) {$/;"	P	interface:VisitMut
visit_fields_unnamed_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_fields_unnamed_mut<V>(v: &mut V, node: &mut FieldsUnnamed)$/;"	f
visit_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_file(&mut self, i: &'ast File) {$/;"	P	interface:Visit
visit_file	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_file<'ast, V>(v: &mut V, node: &'ast File)$/;"	f
visit_file_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_file_mut(&mut self, i: &mut File) {$/;"	P	interface:VisitMut
visit_file_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_file_mut<V>(v: &mut V, node: &mut File)$/;"	f
visit_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_fn_arg(&mut self, i: &'ast FnArg) {$/;"	P	interface:Visit
visit_fn_arg	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_fn_arg<'ast, V>(v: &mut V, node: &'ast FnArg)$/;"	f
visit_fn_arg_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_fn_arg_mut(&mut self, i: &mut FnArg) {$/;"	P	interface:VisitMut
visit_fn_arg_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_fn_arg_mut<V>(v: &mut V, node: &mut FnArg)$/;"	f
visit_foreign_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_foreign_item(&mut self, i: &'ast ForeignItem) {$/;"	P	interface:Visit
visit_foreign_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_foreign_item<'ast, V>(v: &mut V, node: &'ast ForeignItem)$/;"	f
visit_foreign_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_foreign_item_fn(&mut self, i: &'ast ForeignItemFn) {$/;"	P	interface:Visit
visit_foreign_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_foreign_item_fn<'ast, V>(v: &mut V, node: &'ast ForeignItemFn)$/;"	f
visit_foreign_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_foreign_item_fn_mut(&mut self, i: &mut ForeignItemFn) {$/;"	P	interface:VisitMut
visit_foreign_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_foreign_item_fn_mut<V>(v: &mut V, node: &mut ForeignItemFn)$/;"	f
visit_foreign_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_foreign_item_macro(&mut self, i: &'ast ForeignItemMacro) {$/;"	P	interface:Visit
visit_foreign_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_foreign_item_macro<'ast, V>(v: &mut V, node: &'ast ForeignItemMacro)$/;"	f
visit_foreign_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_foreign_item_macro_mut(&mut self, i: &mut ForeignItemMacro) {$/;"	P	interface:VisitMut
visit_foreign_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_foreign_item_macro_mut<V>(v: &mut V, node: &mut ForeignItemMacro)$/;"	f
visit_foreign_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_foreign_item_mut(&mut self, i: &mut ForeignItem) {$/;"	P	interface:VisitMut
visit_foreign_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_foreign_item_mut<V>(v: &mut V, node: &mut ForeignItem)$/;"	f
visit_foreign_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_foreign_item_static(&mut self, i: &'ast ForeignItemStatic) {$/;"	P	interface:Visit
visit_foreign_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_foreign_item_static<'ast, V>(v: &mut V, node: &'ast ForeignItemStatic)$/;"	f
visit_foreign_item_static_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_foreign_item_static_mut(&mut self, i: &mut ForeignItemStatic) {$/;"	P	interface:VisitMut
visit_foreign_item_static_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_foreign_item_static_mut<V>(v: &mut V, node: &mut ForeignItemStatic)$/;"	f
visit_foreign_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_foreign_item_type(&mut self, i: &'ast ForeignItemType) {$/;"	P	interface:Visit
visit_foreign_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_foreign_item_type<'ast, V>(v: &mut V, node: &'ast ForeignItemType)$/;"	f
visit_foreign_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_foreign_item_type_mut(&mut self, i: &mut ForeignItemType) {$/;"	P	interface:VisitMut
visit_foreign_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_foreign_item_type_mut<V>(v: &mut V, node: &mut ForeignItemType)$/;"	f
visit_generic_argument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_generic_argument(&mut self, i: &'ast GenericArgument) {$/;"	P	interface:Visit
visit_generic_argument	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_generic_argument<'ast, V>(v: &mut V, node: &'ast GenericArgument)$/;"	f
visit_generic_argument_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_generic_argument_mut(&mut self, i: &mut GenericArgument) {$/;"	P	interface:VisitMut
visit_generic_argument_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_generic_argument_mut<V>(v: &mut V, node: &mut GenericArgument)$/;"	f
visit_generic_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_generic_param(&mut self, i: &'ast GenericParam) {$/;"	P	interface:Visit
visit_generic_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_generic_param<'ast, V>(v: &mut V, node: &'ast GenericParam)$/;"	f
visit_generic_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_generic_param_mut(&mut self, i: &mut GenericParam) {$/;"	P	interface:VisitMut
visit_generic_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_generic_param_mut<V>(v: &mut V, node: &mut GenericParam)$/;"	f
visit_generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_generics(&mut self, i: &'ast Generics) {$/;"	P	interface:Visit
visit_generics	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_generics<'ast, V>(v: &mut V, node: &'ast Generics)$/;"	f
visit_generics_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_generics_mut(&mut self, i: &mut Generics) {$/;"	P	interface:VisitMut
visit_generics_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_generics_mut<V>(v: &mut V, node: &mut Generics)$/;"	f
visit_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_ident(&mut self, i: &'ast Ident) {$/;"	P	interface:Visit
visit_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_ident<'ast, V>(v: &mut V, node: &'ast Ident)$/;"	f
visit_ident_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_ident_mut(&mut self, i: &mut Ident) {$/;"	P	interface:VisitMut
visit_ident_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_ident_mut<V>(v: &mut V, node: &mut Ident)$/;"	f
visit_impl_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_impl_item(&mut self, i: &'ast ImplItem) {$/;"	P	interface:Visit
visit_impl_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_impl_item<'ast, V>(v: &mut V, node: &'ast ImplItem)$/;"	f
visit_impl_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_impl_item_const(&mut self, i: &'ast ImplItemConst) {$/;"	P	interface:Visit
visit_impl_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_impl_item_const<'ast, V>(v: &mut V, node: &'ast ImplItemConst)$/;"	f
visit_impl_item_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_impl_item_const_mut(&mut self, i: &mut ImplItemConst) {$/;"	P	interface:VisitMut
visit_impl_item_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_impl_item_const_mut<V>(v: &mut V, node: &mut ImplItemConst)$/;"	f
visit_impl_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_impl_item_fn(&mut self, i: &'ast ImplItemFn) {$/;"	P	interface:Visit
visit_impl_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_impl_item_fn<'ast, V>(v: &mut V, node: &'ast ImplItemFn)$/;"	f
visit_impl_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_impl_item_fn_mut(&mut self, i: &mut ImplItemFn) {$/;"	P	interface:VisitMut
visit_impl_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_impl_item_fn_mut<V>(v: &mut V, node: &mut ImplItemFn)$/;"	f
visit_impl_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_impl_item_macro(&mut self, i: &'ast ImplItemMacro) {$/;"	P	interface:Visit
visit_impl_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_impl_item_macro<'ast, V>(v: &mut V, node: &'ast ImplItemMacro)$/;"	f
visit_impl_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_impl_item_macro_mut(&mut self, i: &mut ImplItemMacro) {$/;"	P	interface:VisitMut
visit_impl_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_impl_item_macro_mut<V>(v: &mut V, node: &mut ImplItemMacro)$/;"	f
visit_impl_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_impl_item_mut(&mut self, i: &mut ImplItem) {$/;"	P	interface:VisitMut
visit_impl_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_impl_item_mut<V>(v: &mut V, node: &mut ImplItem)$/;"	f
visit_impl_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_impl_item_type(&mut self, i: &'ast ImplItemType) {$/;"	P	interface:Visit
visit_impl_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_impl_item_type<'ast, V>(v: &mut V, node: &'ast ImplItemType)$/;"	f
visit_impl_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_impl_item_type_mut(&mut self, i: &mut ImplItemType) {$/;"	P	interface:VisitMut
visit_impl_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_impl_item_type_mut<V>(v: &mut V, node: &mut ImplItemType)$/;"	f
visit_impl_restriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_impl_restriction(&mut self, i: &'ast ImplRestriction) {$/;"	P	interface:Visit
visit_impl_restriction	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_impl_restriction<'ast, V>(v: &mut V, node: &'ast ImplRestriction)$/;"	f
visit_impl_restriction_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_impl_restriction_mut(&mut self, i: &mut ImplRestriction) {$/;"	P	interface:VisitMut
visit_impl_restriction_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_impl_restriction_mut<V>(v: &mut V, node: &mut ImplRestriction)$/;"	f
visit_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_index(&mut self, i: &'ast Index) {$/;"	P	interface:Visit
visit_index	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_index<'ast, V>(v: &mut V, node: &'ast Index)$/;"	f
visit_index_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_index_mut(&mut self, i: &mut Index) {$/;"	P	interface:VisitMut
visit_index_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_index_mut<V>(v: &mut V, node: &mut Index)$/;"	f
visit_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item(&mut self, i: &'ast Item) {$/;"	P	interface:Visit
visit_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item<'ast, V>(v: &mut V, node: &'ast Item)$/;"	f
visit_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_const(&mut self, i: &'ast ItemConst) {$/;"	P	interface:Visit
visit_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_const<'ast, V>(v: &mut V, node: &'ast ItemConst)$/;"	f
visit_item_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_const_mut(&mut self, i: &mut ItemConst) {$/;"	P	interface:VisitMut
visit_item_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_const_mut<V>(v: &mut V, node: &mut ItemConst)$/;"	f
visit_item_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_enum(&mut self, i: &'ast ItemEnum) {$/;"	P	interface:Visit
visit_item_enum	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_enum<'ast, V>(v: &mut V, node: &'ast ItemEnum)$/;"	f
visit_item_enum_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_enum_mut(&mut self, i: &mut ItemEnum) {$/;"	P	interface:VisitMut
visit_item_enum_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_enum_mut<V>(v: &mut V, node: &mut ItemEnum)$/;"	f
visit_item_extern_crate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_extern_crate(&mut self, i: &'ast ItemExternCrate) {$/;"	P	interface:Visit
visit_item_extern_crate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_extern_crate<'ast, V>(v: &mut V, node: &'ast ItemExternCrate)$/;"	f
visit_item_extern_crate_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_extern_crate_mut(&mut self, i: &mut ItemExternCrate) {$/;"	P	interface:VisitMut
visit_item_extern_crate_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_extern_crate_mut<V>(v: &mut V, node: &mut ItemExternCrate)$/;"	f
visit_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_fn(&mut self, i: &'ast ItemFn) {$/;"	P	interface:Visit
visit_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_fn<'ast, V>(v: &mut V, node: &'ast ItemFn)$/;"	f
visit_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_fn_mut(&mut self, i: &mut ItemFn) {$/;"	P	interface:VisitMut
visit_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_fn_mut<V>(v: &mut V, node: &mut ItemFn)$/;"	f
visit_item_foreign_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_foreign_mod(&mut self, i: &'ast ItemForeignMod) {$/;"	P	interface:Visit
visit_item_foreign_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_foreign_mod<'ast, V>(v: &mut V, node: &'ast ItemForeignMod)$/;"	f
visit_item_foreign_mod_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_foreign_mod_mut(&mut self, i: &mut ItemForeignMod) {$/;"	P	interface:VisitMut
visit_item_foreign_mod_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_foreign_mod_mut<V>(v: &mut V, node: &mut ItemForeignMod)$/;"	f
visit_item_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_impl(&mut self, i: &'ast ItemImpl) {$/;"	P	interface:Visit
visit_item_impl	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_impl<'ast, V>(v: &mut V, node: &'ast ItemImpl)$/;"	f
visit_item_impl_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_impl_mut(&mut self, i: &mut ItemImpl) {$/;"	P	interface:VisitMut
visit_item_impl_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_impl_mut<V>(v: &mut V, node: &mut ItemImpl)$/;"	f
visit_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_macro(&mut self, i: &'ast ItemMacro) {$/;"	P	interface:Visit
visit_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_macro<'ast, V>(v: &mut V, node: &'ast ItemMacro)$/;"	f
visit_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_macro_mut(&mut self, i: &mut ItemMacro) {$/;"	P	interface:VisitMut
visit_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_macro_mut<V>(v: &mut V, node: &mut ItemMacro)$/;"	f
visit_item_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_mod(&mut self, i: &'ast ItemMod) {$/;"	P	interface:Visit
visit_item_mod	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_mod<'ast, V>(v: &mut V, node: &'ast ItemMod)$/;"	f
visit_item_mod_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_mod_mut(&mut self, i: &mut ItemMod) {$/;"	P	interface:VisitMut
visit_item_mod_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_mod_mut<V>(v: &mut V, node: &mut ItemMod)$/;"	f
visit_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_mut(&mut self, i: &mut Item) {$/;"	P	interface:VisitMut
visit_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_mut<V>(v: &mut V, node: &mut Item)$/;"	f
visit_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_static(&mut self, i: &'ast ItemStatic) {$/;"	P	interface:Visit
visit_item_static	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_static<'ast, V>(v: &mut V, node: &'ast ItemStatic)$/;"	f
visit_item_static_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_static_mut(&mut self, i: &mut ItemStatic) {$/;"	P	interface:VisitMut
visit_item_static_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_static_mut<V>(v: &mut V, node: &mut ItemStatic)$/;"	f
visit_item_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_struct(&mut self, i: &'ast ItemStruct) {$/;"	P	interface:Visit
visit_item_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_struct<'ast, V>(v: &mut V, node: &'ast ItemStruct)$/;"	f
visit_item_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_struct_mut(&mut self, i: &mut ItemStruct) {$/;"	P	interface:VisitMut
visit_item_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_struct_mut<V>(v: &mut V, node: &mut ItemStruct)$/;"	f
visit_item_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_trait(&mut self, i: &'ast ItemTrait) {$/;"	P	interface:Visit
visit_item_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_trait<'ast, V>(v: &mut V, node: &'ast ItemTrait)$/;"	f
visit_item_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_trait_alias(&mut self, i: &'ast ItemTraitAlias) {$/;"	P	interface:Visit
visit_item_trait_alias	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_trait_alias<'ast, V>(v: &mut V, node: &'ast ItemTraitAlias)$/;"	f
visit_item_trait_alias_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_trait_alias_mut(&mut self, i: &mut ItemTraitAlias) {$/;"	P	interface:VisitMut
visit_item_trait_alias_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_trait_alias_mut<V>(v: &mut V, node: &mut ItemTraitAlias)$/;"	f
visit_item_trait_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_trait_mut(&mut self, i: &mut ItemTrait) {$/;"	P	interface:VisitMut
visit_item_trait_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_trait_mut<V>(v: &mut V, node: &mut ItemTrait)$/;"	f
visit_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_type(&mut self, i: &'ast ItemType) {$/;"	P	interface:Visit
visit_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_type<'ast, V>(v: &mut V, node: &'ast ItemType)$/;"	f
visit_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_type_mut(&mut self, i: &mut ItemType) {$/;"	P	interface:VisitMut
visit_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_type_mut<V>(v: &mut V, node: &mut ItemType)$/;"	f
visit_item_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_union(&mut self, i: &'ast ItemUnion) {$/;"	P	interface:Visit
visit_item_union	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_union<'ast, V>(v: &mut V, node: &'ast ItemUnion)$/;"	f
visit_item_union_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_union_mut(&mut self, i: &mut ItemUnion) {$/;"	P	interface:VisitMut
visit_item_union_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_union_mut<V>(v: &mut V, node: &mut ItemUnion)$/;"	f
visit_item_use	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_item_use(&mut self, i: &'ast ItemUse) {$/;"	P	interface:Visit
visit_item_use	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_item_use<'ast, V>(v: &mut V, node: &'ast ItemUse)$/;"	f
visit_item_use_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_item_use_mut(&mut self, i: &mut ItemUse) {$/;"	P	interface:VisitMut
visit_item_use_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_item_use_mut<V>(v: &mut V, node: &mut ItemUse)$/;"	f
visit_label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_label(&mut self, i: &'ast Label) {$/;"	P	interface:Visit
visit_label	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_label<'ast, V>(v: &mut V, node: &'ast Label)$/;"	f
visit_label_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_label_mut(&mut self, i: &mut Label) {$/;"	P	interface:VisitMut
visit_label_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_label_mut<V>(v: &mut V, node: &mut Label)$/;"	f
visit_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lifetime(&mut self, i: &'ast Lifetime) {$/;"	P	interface:Visit
visit_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lifetime<'ast, V>(v: &mut V, node: &'ast Lifetime)$/;"	f
visit_lifetime_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lifetime_mut(&mut self, i: &mut Lifetime) {$/;"	P	interface:VisitMut
visit_lifetime_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lifetime_mut<V>(v: &mut V, node: &mut Lifetime)$/;"	f
visit_lifetime_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lifetime_param(&mut self, i: &'ast LifetimeParam) {$/;"	P	interface:Visit
visit_lifetime_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lifetime_param<'ast, V>(v: &mut V, node: &'ast LifetimeParam)$/;"	f
visit_lifetime_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lifetime_param_mut(&mut self, i: &mut LifetimeParam) {$/;"	P	interface:VisitMut
visit_lifetime_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lifetime_param_mut<V>(v: &mut V, node: &mut LifetimeParam)$/;"	f
visit_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit(&mut self, i: &'ast Lit) {$/;"	P	interface:Visit
visit_lit	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit<'ast, V>(v: &mut V, node: &'ast Lit)$/;"	f
visit_lit_bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_bool(&mut self, i: &'ast LitBool) {$/;"	P	interface:Visit
visit_lit_bool	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_bool<'ast, V>(v: &mut V, node: &'ast LitBool)$/;"	f
visit_lit_bool_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_bool_mut(&mut self, i: &mut LitBool) {$/;"	P	interface:VisitMut
visit_lit_bool_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_bool_mut<V>(v: &mut V, node: &mut LitBool)$/;"	f
visit_lit_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_byte(&mut self, i: &'ast LitByte) {$/;"	P	interface:Visit
visit_lit_byte	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_byte<'ast, V>(v: &mut V, node: &'ast LitByte)$/;"	f
visit_lit_byte_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_byte_mut(&mut self, i: &mut LitByte) {$/;"	P	interface:VisitMut
visit_lit_byte_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_byte_mut<V>(v: &mut V, node: &mut LitByte)$/;"	f
visit_lit_byte_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_byte_str(&mut self, i: &'ast LitByteStr) {$/;"	P	interface:Visit
visit_lit_byte_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_byte_str<'ast, V>(v: &mut V, node: &'ast LitByteStr)$/;"	f
visit_lit_byte_str_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_byte_str_mut(&mut self, i: &mut LitByteStr) {$/;"	P	interface:VisitMut
visit_lit_byte_str_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_byte_str_mut<V>(v: &mut V, node: &mut LitByteStr)$/;"	f
visit_lit_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_char(&mut self, i: &'ast LitChar) {$/;"	P	interface:Visit
visit_lit_char	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_char<'ast, V>(v: &mut V, node: &'ast LitChar)$/;"	f
visit_lit_char_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_char_mut(&mut self, i: &mut LitChar) {$/;"	P	interface:VisitMut
visit_lit_char_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_char_mut<V>(v: &mut V, node: &mut LitChar)$/;"	f
visit_lit_float	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_float(&mut self, i: &'ast LitFloat) {$/;"	P	interface:Visit
visit_lit_float	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_float<'ast, V>(v: &mut V, node: &'ast LitFloat)$/;"	f
visit_lit_float_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_float_mut(&mut self, i: &mut LitFloat) {$/;"	P	interface:VisitMut
visit_lit_float_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_float_mut<V>(v: &mut V, node: &mut LitFloat)$/;"	f
visit_lit_int	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_int(&mut self, i: &'ast LitInt) {$/;"	P	interface:Visit
visit_lit_int	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_int<'ast, V>(v: &mut V, node: &'ast LitInt)$/;"	f
visit_lit_int_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_int_mut(&mut self, i: &mut LitInt) {$/;"	P	interface:VisitMut
visit_lit_int_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_int_mut<V>(v: &mut V, node: &mut LitInt)$/;"	f
visit_lit_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_mut(&mut self, i: &mut Lit) {$/;"	P	interface:VisitMut
visit_lit_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_mut<V>(v: &mut V, node: &mut Lit)$/;"	f
visit_lit_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_lit_str(&mut self, i: &'ast LitStr) {$/;"	P	interface:Visit
visit_lit_str	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_lit_str<'ast, V>(v: &mut V, node: &'ast LitStr)$/;"	f
visit_lit_str_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_lit_str_mut(&mut self, i: &mut LitStr) {$/;"	P	interface:VisitMut
visit_lit_str_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_lit_str_mut<V>(v: &mut V, node: &mut LitStr)$/;"	f
visit_local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_local(&mut self, i: &'ast Local) {$/;"	P	interface:Visit
visit_local	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_local<'ast, V>(v: &mut V, node: &'ast Local)$/;"	f
visit_local_init	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_local_init(&mut self, i: &'ast LocalInit) {$/;"	P	interface:Visit
visit_local_init	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_local_init<'ast, V>(v: &mut V, node: &'ast LocalInit)$/;"	f
visit_local_init_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_local_init_mut(&mut self, i: &mut LocalInit) {$/;"	P	interface:VisitMut
visit_local_init_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_local_init_mut<V>(v: &mut V, node: &mut LocalInit)$/;"	f
visit_local_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_local_mut(&mut self, i: &mut Local) {$/;"	P	interface:VisitMut
visit_local_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_local_mut<V>(v: &mut V, node: &mut Local)$/;"	f
visit_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_macro(&mut self, i: &'ast Macro) {$/;"	P	interface:Visit
visit_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_macro<'ast, V>(v: &mut V, node: &'ast Macro)$/;"	f
visit_macro_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_macro_delimiter(&mut self, i: &'ast MacroDelimiter) {$/;"	P	interface:Visit
visit_macro_delimiter	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_macro_delimiter<'ast, V>(v: &mut V, node: &'ast MacroDelimiter)$/;"	f
visit_macro_delimiter_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_macro_delimiter_mut(&mut self, i: &mut MacroDelimiter) {$/;"	P	interface:VisitMut
visit_macro_delimiter_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_macro_delimiter_mut<V>(v: &mut V, node: &mut MacroDelimiter)$/;"	f
visit_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_macro_mut(&mut self, i: &mut Macro) {$/;"	P	interface:VisitMut
visit_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_macro_mut<V>(v: &mut V, node: &mut Macro)$/;"	f
visit_member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_member(&mut self, i: &'ast Member) {$/;"	P	interface:Visit
visit_member	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_member<'ast, V>(v: &mut V, node: &'ast Member)$/;"	f
visit_member_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_member_mut(&mut self, i: &mut Member) {$/;"	P	interface:VisitMut
visit_member_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_member_mut<V>(v: &mut V, node: &mut Member)$/;"	f
visit_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_meta(&mut self, i: &'ast Meta) {$/;"	P	interface:Visit
visit_meta	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_meta<'ast, V>(v: &mut V, node: &'ast Meta)$/;"	f
visit_meta_list	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_meta_list(&mut self, i: &'ast MetaList) {$/;"	P	interface:Visit
visit_meta_list	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_meta_list<'ast, V>(v: &mut V, node: &'ast MetaList)$/;"	f
visit_meta_list_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_meta_list_mut(&mut self, i: &mut MetaList) {$/;"	P	interface:VisitMut
visit_meta_list_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_meta_list_mut<V>(v: &mut V, node: &mut MetaList)$/;"	f
visit_meta_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_meta_mut(&mut self, i: &mut Meta) {$/;"	P	interface:VisitMut
visit_meta_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_meta_mut<V>(v: &mut V, node: &mut Meta)$/;"	f
visit_meta_name_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_meta_name_value(&mut self, i: &'ast MetaNameValue) {$/;"	P	interface:Visit
visit_meta_name_value	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_meta_name_value<'ast, V>(v: &mut V, node: &'ast MetaNameValue)$/;"	f
visit_meta_name_value_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_meta_name_value_mut(&mut self, i: &mut MetaNameValue) {$/;"	P	interface:VisitMut
visit_meta_name_value_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_meta_name_value_mut<V>(v: &mut V, node: &mut MetaNameValue)$/;"	f
visit_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^    pub mod visit_mut;$/;"	n	module:gen
visit_parenthesized_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_parenthesized_generic_arguments($/;"	P	interface:Visit
visit_parenthesized_generic_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_parenthesized_generic_arguments<'ast, V>($/;"	f
visit_parenthesized_generic_arguments_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_parenthesized_generic_arguments_mut($/;"	P	interface:VisitMut
visit_parenthesized_generic_arguments_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_parenthesized_generic_arguments_mut<V>($/;"	f
visit_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat(&mut self, i: &'ast Pat) {$/;"	P	interface:Visit
visit_pat	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat<'ast, V>(v: &mut V, node: &'ast Pat)$/;"	f
visit_pat_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_ident(&mut self, i: &'ast PatIdent) {$/;"	P	interface:Visit
visit_pat_ident	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_ident<'ast, V>(v: &mut V, node: &'ast PatIdent)$/;"	f
visit_pat_ident_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_ident_mut(&mut self, i: &mut PatIdent) {$/;"	P	interface:VisitMut
visit_pat_ident_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_ident_mut<V>(v: &mut V, node: &mut PatIdent)$/;"	f
visit_pat_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_mut(&mut self, i: &mut Pat) {$/;"	P	interface:VisitMut
visit_pat_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_mut<V>(v: &mut V, node: &mut Pat)$/;"	f
visit_pat_or	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_or(&mut self, i: &'ast PatOr) {$/;"	P	interface:Visit
visit_pat_or	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_or<'ast, V>(v: &mut V, node: &'ast PatOr)$/;"	f
visit_pat_or_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_or_mut(&mut self, i: &mut PatOr) {$/;"	P	interface:VisitMut
visit_pat_or_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_or_mut<V>(v: &mut V, node: &mut PatOr)$/;"	f
visit_pat_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_paren(&mut self, i: &'ast PatParen) {$/;"	P	interface:Visit
visit_pat_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_paren<'ast, V>(v: &mut V, node: &'ast PatParen)$/;"	f
visit_pat_paren_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_paren_mut(&mut self, i: &mut PatParen) {$/;"	P	interface:VisitMut
visit_pat_paren_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_paren_mut<V>(v: &mut V, node: &mut PatParen)$/;"	f
visit_pat_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_reference(&mut self, i: &'ast PatReference) {$/;"	P	interface:Visit
visit_pat_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_reference<'ast, V>(v: &mut V, node: &'ast PatReference)$/;"	f
visit_pat_reference_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_reference_mut(&mut self, i: &mut PatReference) {$/;"	P	interface:VisitMut
visit_pat_reference_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_reference_mut<V>(v: &mut V, node: &mut PatReference)$/;"	f
visit_pat_rest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_rest(&mut self, i: &'ast PatRest) {$/;"	P	interface:Visit
visit_pat_rest	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_rest<'ast, V>(v: &mut V, node: &'ast PatRest)$/;"	f
visit_pat_rest_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_rest_mut(&mut self, i: &mut PatRest) {$/;"	P	interface:VisitMut
visit_pat_rest_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_rest_mut<V>(v: &mut V, node: &mut PatRest)$/;"	f
visit_pat_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_slice(&mut self, i: &'ast PatSlice) {$/;"	P	interface:Visit
visit_pat_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_slice<'ast, V>(v: &mut V, node: &'ast PatSlice)$/;"	f
visit_pat_slice_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_slice_mut(&mut self, i: &mut PatSlice) {$/;"	P	interface:VisitMut
visit_pat_slice_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_slice_mut<V>(v: &mut V, node: &mut PatSlice)$/;"	f
visit_pat_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_struct(&mut self, i: &'ast PatStruct) {$/;"	P	interface:Visit
visit_pat_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_struct<'ast, V>(v: &mut V, node: &'ast PatStruct)$/;"	f
visit_pat_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_struct_mut(&mut self, i: &mut PatStruct) {$/;"	P	interface:VisitMut
visit_pat_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_struct_mut<V>(v: &mut V, node: &mut PatStruct)$/;"	f
visit_pat_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_tuple(&mut self, i: &'ast PatTuple) {$/;"	P	interface:Visit
visit_pat_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_tuple<'ast, V>(v: &mut V, node: &'ast PatTuple)$/;"	f
visit_pat_tuple_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_tuple_mut(&mut self, i: &mut PatTuple) {$/;"	P	interface:VisitMut
visit_pat_tuple_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_tuple_mut<V>(v: &mut V, node: &mut PatTuple)$/;"	f
visit_pat_tuple_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_tuple_struct(&mut self, i: &'ast PatTupleStruct) {$/;"	P	interface:Visit
visit_pat_tuple_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_tuple_struct<'ast, V>(v: &mut V, node: &'ast PatTupleStruct)$/;"	f
visit_pat_tuple_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_tuple_struct_mut(&mut self, i: &mut PatTupleStruct) {$/;"	P	interface:VisitMut
visit_pat_tuple_struct_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_tuple_struct_mut<V>(v: &mut V, node: &mut PatTupleStruct)$/;"	f
visit_pat_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_type(&mut self, i: &'ast PatType) {$/;"	P	interface:Visit
visit_pat_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_type<'ast, V>(v: &mut V, node: &'ast PatType)$/;"	f
visit_pat_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_type_mut(&mut self, i: &mut PatType) {$/;"	P	interface:VisitMut
visit_pat_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_type_mut<V>(v: &mut V, node: &mut PatType)$/;"	f
visit_pat_wild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_pat_wild(&mut self, i: &'ast PatWild) {$/;"	P	interface:Visit
visit_pat_wild	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_pat_wild<'ast, V>(v: &mut V, node: &'ast PatWild)$/;"	f
visit_pat_wild_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_pat_wild_mut(&mut self, i: &mut PatWild) {$/;"	P	interface:VisitMut
visit_pat_wild_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_pat_wild_mut<V>(v: &mut V, node: &mut PatWild)$/;"	f
visit_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_path(&mut self, i: &'ast Path) {$/;"	P	interface:Visit
visit_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_path<'ast, V>(v: &mut V, node: &'ast Path)$/;"	f
visit_path_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_path_arguments(&mut self, i: &'ast PathArguments) {$/;"	P	interface:Visit
visit_path_arguments	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_path_arguments<'ast, V>(v: &mut V, node: &'ast PathArguments)$/;"	f
visit_path_arguments_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_path_arguments_mut(&mut self, i: &mut PathArguments) {$/;"	P	interface:VisitMut
visit_path_arguments_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_path_arguments_mut<V>(v: &mut V, node: &mut PathArguments)$/;"	f
visit_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_path_mut(&mut self, i: &mut Path) {$/;"	P	interface:VisitMut
visit_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_path_mut<V>(v: &mut V, node: &mut Path)$/;"	f
visit_path_segment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_path_segment(&mut self, i: &'ast PathSegment) {$/;"	P	interface:Visit
visit_path_segment	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_path_segment<'ast, V>(v: &mut V, node: &'ast PathSegment)$/;"	f
visit_path_segment_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_path_segment_mut(&mut self, i: &mut PathSegment) {$/;"	P	interface:VisitMut
visit_path_segment_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_path_segment_mut<V>(v: &mut V, node: &mut PathSegment)$/;"	f
visit_predicate_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_predicate_lifetime(&mut self, i: &'ast PredicateLifetime) {$/;"	P	interface:Visit
visit_predicate_lifetime	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_predicate_lifetime<'ast, V>(v: &mut V, node: &'ast PredicateLifetime)$/;"	f
visit_predicate_lifetime_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_predicate_lifetime_mut(&mut self, i: &mut PredicateLifetime) {$/;"	P	interface:VisitMut
visit_predicate_lifetime_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_predicate_lifetime_mut<V>(v: &mut V, node: &mut PredicateLifetime)$/;"	f
visit_predicate_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_predicate_type(&mut self, i: &'ast PredicateType) {$/;"	P	interface:Visit
visit_predicate_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_predicate_type<'ast, V>(v: &mut V, node: &'ast PredicateType)$/;"	f
visit_predicate_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_predicate_type_mut(&mut self, i: &mut PredicateType) {$/;"	P	interface:VisitMut
visit_predicate_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_predicate_type_mut<V>(v: &mut V, node: &mut PredicateType)$/;"	f
visit_qself	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_qself(&mut self, i: &'ast QSelf) {$/;"	P	interface:Visit
visit_qself	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_qself<'ast, V>(v: &mut V, node: &'ast QSelf)$/;"	f
visit_qself_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_qself_mut(&mut self, i: &mut QSelf) {$/;"	P	interface:VisitMut
visit_qself_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_qself_mut<V>(v: &mut V, node: &mut QSelf)$/;"	f
visit_range_limits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_range_limits(&mut self, i: &'ast RangeLimits) {$/;"	P	interface:Visit
visit_range_limits	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_range_limits<'ast, V>(v: &mut V, node: &'ast RangeLimits)$/;"	f
visit_range_limits_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_range_limits_mut(&mut self, i: &mut RangeLimits) {$/;"	P	interface:VisitMut
visit_range_limits_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_range_limits_mut<V>(v: &mut V, node: &mut RangeLimits)$/;"	f
visit_receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_receiver(&mut self, i: &'ast Receiver) {$/;"	P	interface:Visit
visit_receiver	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_receiver<'ast, V>(v: &mut V, node: &'ast Receiver)$/;"	f
visit_receiver_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_receiver_mut(&mut self, i: &mut Receiver) {$/;"	P	interface:VisitMut
visit_receiver_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_receiver_mut<V>(v: &mut V, node: &mut Receiver)$/;"	f
visit_return_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_return_type(&mut self, i: &'ast ReturnType) {$/;"	P	interface:Visit
visit_return_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_return_type<'ast, V>(v: &mut V, node: &'ast ReturnType)$/;"	f
visit_return_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_return_type_mut(&mut self, i: &mut ReturnType) {$/;"	P	interface:VisitMut
visit_return_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_return_type_mut<V>(v: &mut V, node: &mut ReturnType)$/;"	f
visit_signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_signature(&mut self, i: &'ast Signature) {$/;"	P	interface:Visit
visit_signature	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_signature<'ast, V>(v: &mut V, node: &'ast Signature)$/;"	f
visit_signature_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_signature_mut(&mut self, i: &mut Signature) {$/;"	P	interface:VisitMut
visit_signature_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_signature_mut<V>(v: &mut V, node: &mut Signature)$/;"	f
visit_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_span(&mut self, i: &Span) {$/;"	P	interface:Visit
visit_span	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_span<'ast, V>(v: &mut V, node: &Span)$/;"	f
visit_span_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_span_mut(&mut self, i: &mut Span) {$/;"	P	interface:VisitMut
visit_span_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_span_mut<V>(v: &mut V, node: &mut Span)$/;"	f
visit_static_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_static_mutability(&mut self, i: &'ast StaticMutability) {$/;"	P	interface:Visit
visit_static_mutability	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_static_mutability<'ast, V>(v: &mut V, node: &'ast StaticMutability)$/;"	f
visit_static_mutability_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_static_mutability_mut(&mut self, i: &mut StaticMutability) {$/;"	P	interface:VisitMut
visit_static_mutability_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_static_mutability_mut<V>(v: &mut V, node: &mut StaticMutability)$/;"	f
visit_stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_stmt(&mut self, i: &'ast Stmt) {$/;"	P	interface:Visit
visit_stmt	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_stmt<'ast, V>(v: &mut V, node: &'ast Stmt)$/;"	f
visit_stmt_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_stmt_macro(&mut self, i: &'ast StmtMacro) {$/;"	P	interface:Visit
visit_stmt_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_stmt_macro<'ast, V>(v: &mut V, node: &'ast StmtMacro)$/;"	f
visit_stmt_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_stmt_macro_mut(&mut self, i: &mut StmtMacro) {$/;"	P	interface:VisitMut
visit_stmt_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_stmt_macro_mut<V>(v: &mut V, node: &mut StmtMacro)$/;"	f
visit_stmt_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_stmt_mut(&mut self, i: &mut Stmt) {$/;"	P	interface:VisitMut
visit_stmt_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_stmt_mut<V>(v: &mut V, node: &mut Stmt)$/;"	f
visit_trait_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_bound(&mut self, i: &'ast TraitBound) {$/;"	P	interface:Visit
visit_trait_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_bound<'ast, V>(v: &mut V, node: &'ast TraitBound)$/;"	f
visit_trait_bound_modifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_bound_modifier(&mut self, i: &'ast TraitBoundModifier) {$/;"	P	interface:Visit
visit_trait_bound_modifier	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_bound_modifier<'ast, V>(v: &mut V, node: &'ast TraitBoundModifier)$/;"	f
visit_trait_bound_modifier_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_bound_modifier_mut(&mut self, i: &mut TraitBoundModifier) {$/;"	P	interface:VisitMut
visit_trait_bound_modifier_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_bound_modifier_mut<V>(v: &mut V, node: &mut TraitBoundModifier)$/;"	f
visit_trait_bound_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_bound_mut(&mut self, i: &mut TraitBound) {$/;"	P	interface:VisitMut
visit_trait_bound_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_bound_mut<V>(v: &mut V, node: &mut TraitBound)$/;"	f
visit_trait_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_item(&mut self, i: &'ast TraitItem) {$/;"	P	interface:Visit
visit_trait_item	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_item<'ast, V>(v: &mut V, node: &'ast TraitItem)$/;"	f
visit_trait_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_item_const(&mut self, i: &'ast TraitItemConst) {$/;"	P	interface:Visit
visit_trait_item_const	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_item_const<'ast, V>(v: &mut V, node: &'ast TraitItemConst)$/;"	f
visit_trait_item_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_item_const_mut(&mut self, i: &mut TraitItemConst) {$/;"	P	interface:VisitMut
visit_trait_item_const_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_item_const_mut<V>(v: &mut V, node: &mut TraitItemConst)$/;"	f
visit_trait_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_item_fn(&mut self, i: &'ast TraitItemFn) {$/;"	P	interface:Visit
visit_trait_item_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_item_fn<'ast, V>(v: &mut V, node: &'ast TraitItemFn)$/;"	f
visit_trait_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_item_fn_mut(&mut self, i: &mut TraitItemFn) {$/;"	P	interface:VisitMut
visit_trait_item_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_item_fn_mut<V>(v: &mut V, node: &mut TraitItemFn)$/;"	f
visit_trait_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_item_macro(&mut self, i: &'ast TraitItemMacro) {$/;"	P	interface:Visit
visit_trait_item_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_item_macro<'ast, V>(v: &mut V, node: &'ast TraitItemMacro)$/;"	f
visit_trait_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_item_macro_mut(&mut self, i: &mut TraitItemMacro) {$/;"	P	interface:VisitMut
visit_trait_item_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_item_macro_mut<V>(v: &mut V, node: &mut TraitItemMacro)$/;"	f
visit_trait_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_item_mut(&mut self, i: &mut TraitItem) {$/;"	P	interface:VisitMut
visit_trait_item_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_item_mut<V>(v: &mut V, node: &mut TraitItem)$/;"	f
visit_trait_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_trait_item_type(&mut self, i: &'ast TraitItemType) {$/;"	P	interface:Visit
visit_trait_item_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_trait_item_type<'ast, V>(v: &mut V, node: &'ast TraitItemType)$/;"	f
visit_trait_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_trait_item_type_mut(&mut self, i: &mut TraitItemType) {$/;"	P	interface:VisitMut
visit_trait_item_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_trait_item_type_mut<V>(v: &mut V, node: &mut TraitItemType)$/;"	f
visit_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type(&mut self, i: &'ast Type) {$/;"	P	interface:Visit
visit_type	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type<'ast, V>(v: &mut V, node: &'ast Type)$/;"	f
visit_type_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_array(&mut self, i: &'ast TypeArray) {$/;"	P	interface:Visit
visit_type_array	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_array<'ast, V>(v: &mut V, node: &'ast TypeArray)$/;"	f
visit_type_array_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_array_mut(&mut self, i: &mut TypeArray) {$/;"	P	interface:VisitMut
visit_type_array_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_array_mut<V>(v: &mut V, node: &mut TypeArray)$/;"	f
visit_type_bare_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_bare_fn(&mut self, i: &'ast TypeBareFn) {$/;"	P	interface:Visit
visit_type_bare_fn	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_bare_fn<'ast, V>(v: &mut V, node: &'ast TypeBareFn)$/;"	f
visit_type_bare_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_bare_fn_mut(&mut self, i: &mut TypeBareFn) {$/;"	P	interface:VisitMut
visit_type_bare_fn_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_bare_fn_mut<V>(v: &mut V, node: &mut TypeBareFn)$/;"	f
visit_type_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_group(&mut self, i: &'ast TypeGroup) {$/;"	P	interface:Visit
visit_type_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_group<'ast, V>(v: &mut V, node: &'ast TypeGroup)$/;"	f
visit_type_group_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_group_mut(&mut self, i: &mut TypeGroup) {$/;"	P	interface:VisitMut
visit_type_group_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_group_mut<V>(v: &mut V, node: &mut TypeGroup)$/;"	f
visit_type_impl_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_impl_trait(&mut self, i: &'ast TypeImplTrait) {$/;"	P	interface:Visit
visit_type_impl_trait	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_impl_trait<'ast, V>(v: &mut V, node: &'ast TypeImplTrait)$/;"	f
visit_type_impl_trait_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_impl_trait_mut(&mut self, i: &mut TypeImplTrait) {$/;"	P	interface:VisitMut
visit_type_impl_trait_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_impl_trait_mut<V>(v: &mut V, node: &mut TypeImplTrait)$/;"	f
visit_type_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_infer(&mut self, i: &'ast TypeInfer) {$/;"	P	interface:Visit
visit_type_infer	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_infer<'ast, V>(v: &mut V, node: &'ast TypeInfer)$/;"	f
visit_type_infer_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_infer_mut(&mut self, i: &mut TypeInfer) {$/;"	P	interface:VisitMut
visit_type_infer_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_infer_mut<V>(v: &mut V, node: &mut TypeInfer)$/;"	f
visit_type_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_macro(&mut self, i: &'ast TypeMacro) {$/;"	P	interface:Visit
visit_type_macro	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_macro<'ast, V>(v: &mut V, node: &'ast TypeMacro)$/;"	f
visit_type_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_macro_mut(&mut self, i: &mut TypeMacro) {$/;"	P	interface:VisitMut
visit_type_macro_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_macro_mut<V>(v: &mut V, node: &mut TypeMacro)$/;"	f
visit_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_mut(&mut self, i: &mut Type) {$/;"	P	interface:VisitMut
visit_type_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_mut<V>(v: &mut V, node: &mut Type)$/;"	f
visit_type_never	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_never(&mut self, i: &'ast TypeNever) {$/;"	P	interface:Visit
visit_type_never	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_never<'ast, V>(v: &mut V, node: &'ast TypeNever)$/;"	f
visit_type_never_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_never_mut(&mut self, i: &mut TypeNever) {$/;"	P	interface:VisitMut
visit_type_never_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_never_mut<V>(v: &mut V, node: &mut TypeNever)$/;"	f
visit_type_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_param(&mut self, i: &'ast TypeParam) {$/;"	P	interface:Visit
visit_type_param	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_param<'ast, V>(v: &mut V, node: &'ast TypeParam)$/;"	f
visit_type_param_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_param_bound(&mut self, i: &'ast TypeParamBound) {$/;"	P	interface:Visit
visit_type_param_bound	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_param_bound<'ast, V>(v: &mut V, node: &'ast TypeParamBound)$/;"	f
visit_type_param_bound_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_param_bound_mut(&mut self, i: &mut TypeParamBound) {$/;"	P	interface:VisitMut
visit_type_param_bound_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_param_bound_mut<V>(v: &mut V, node: &mut TypeParamBound)$/;"	f
visit_type_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_param_mut(&mut self, i: &mut TypeParam) {$/;"	P	interface:VisitMut
visit_type_param_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_param_mut<V>(v: &mut V, node: &mut TypeParam)$/;"	f
visit_type_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_paren(&mut self, i: &'ast TypeParen) {$/;"	P	interface:Visit
visit_type_paren	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_paren<'ast, V>(v: &mut V, node: &'ast TypeParen)$/;"	f
visit_type_paren_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_paren_mut(&mut self, i: &mut TypeParen) {$/;"	P	interface:VisitMut
visit_type_paren_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_paren_mut<V>(v: &mut V, node: &mut TypeParen)$/;"	f
visit_type_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_path(&mut self, i: &'ast TypePath) {$/;"	P	interface:Visit
visit_type_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_path<'ast, V>(v: &mut V, node: &'ast TypePath)$/;"	f
visit_type_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_path_mut(&mut self, i: &mut TypePath) {$/;"	P	interface:VisitMut
visit_type_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_path_mut<V>(v: &mut V, node: &mut TypePath)$/;"	f
visit_type_ptr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_ptr(&mut self, i: &'ast TypePtr) {$/;"	P	interface:Visit
visit_type_ptr	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_ptr<'ast, V>(v: &mut V, node: &'ast TypePtr)$/;"	f
visit_type_ptr_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_ptr_mut(&mut self, i: &mut TypePtr) {$/;"	P	interface:VisitMut
visit_type_ptr_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_ptr_mut<V>(v: &mut V, node: &mut TypePtr)$/;"	f
visit_type_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_reference(&mut self, i: &'ast TypeReference) {$/;"	P	interface:Visit
visit_type_reference	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_reference<'ast, V>(v: &mut V, node: &'ast TypeReference)$/;"	f
visit_type_reference_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_reference_mut(&mut self, i: &mut TypeReference) {$/;"	P	interface:VisitMut
visit_type_reference_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_reference_mut<V>(v: &mut V, node: &mut TypeReference)$/;"	f
visit_type_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_slice(&mut self, i: &'ast TypeSlice) {$/;"	P	interface:Visit
visit_type_slice	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_slice<'ast, V>(v: &mut V, node: &'ast TypeSlice)$/;"	f
visit_type_slice_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_slice_mut(&mut self, i: &mut TypeSlice) {$/;"	P	interface:VisitMut
visit_type_slice_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_slice_mut<V>(v: &mut V, node: &mut TypeSlice)$/;"	f
visit_type_trait_object	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_trait_object(&mut self, i: &'ast TypeTraitObject) {$/;"	P	interface:Visit
visit_type_trait_object	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_trait_object<'ast, V>(v: &mut V, node: &'ast TypeTraitObject)$/;"	f
visit_type_trait_object_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_trait_object_mut(&mut self, i: &mut TypeTraitObject) {$/;"	P	interface:VisitMut
visit_type_trait_object_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_trait_object_mut<V>(v: &mut V, node: &mut TypeTraitObject)$/;"	f
visit_type_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_type_tuple(&mut self, i: &'ast TypeTuple) {$/;"	P	interface:Visit
visit_type_tuple	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_type_tuple<'ast, V>(v: &mut V, node: &'ast TypeTuple)$/;"	f
visit_type_tuple_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_type_tuple_mut(&mut self, i: &mut TypeTuple) {$/;"	P	interface:VisitMut
visit_type_tuple_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_type_tuple_mut<V>(v: &mut V, node: &mut TypeTuple)$/;"	f
visit_un_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_un_op(&mut self, i: &'ast UnOp) {$/;"	P	interface:Visit
visit_un_op	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_un_op<'ast, V>(v: &mut V, node: &'ast UnOp)$/;"	f
visit_un_op_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_un_op_mut(&mut self, i: &mut UnOp) {$/;"	P	interface:VisitMut
visit_un_op_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_un_op_mut<V>(v: &mut V, node: &mut UnOp)$/;"	f
visit_use_glob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_use_glob(&mut self, i: &'ast UseGlob) {$/;"	P	interface:Visit
visit_use_glob	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_use_glob<'ast, V>(v: &mut V, node: &'ast UseGlob)$/;"	f
visit_use_glob_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_use_glob_mut(&mut self, i: &mut UseGlob) {$/;"	P	interface:VisitMut
visit_use_glob_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_use_glob_mut<V>(v: &mut V, node: &mut UseGlob)$/;"	f
visit_use_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_use_group(&mut self, i: &'ast UseGroup) {$/;"	P	interface:Visit
visit_use_group	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_use_group<'ast, V>(v: &mut V, node: &'ast UseGroup)$/;"	f
visit_use_group_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_use_group_mut(&mut self, i: &mut UseGroup) {$/;"	P	interface:VisitMut
visit_use_group_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_use_group_mut<V>(v: &mut V, node: &mut UseGroup)$/;"	f
visit_use_name	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_use_name(&mut self, i: &'ast UseName) {$/;"	P	interface:Visit
visit_use_name	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_use_name<'ast, V>(v: &mut V, node: &'ast UseName)$/;"	f
visit_use_name_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_use_name_mut(&mut self, i: &mut UseName) {$/;"	P	interface:VisitMut
visit_use_name_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_use_name_mut<V>(v: &mut V, node: &mut UseName)$/;"	f
visit_use_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_use_path(&mut self, i: &'ast UsePath) {$/;"	P	interface:Visit
visit_use_path	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_use_path<'ast, V>(v: &mut V, node: &'ast UsePath)$/;"	f
visit_use_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_use_path_mut(&mut self, i: &mut UsePath) {$/;"	P	interface:VisitMut
visit_use_path_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_use_path_mut<V>(v: &mut V, node: &mut UsePath)$/;"	f
visit_use_rename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_use_rename(&mut self, i: &'ast UseRename) {$/;"	P	interface:Visit
visit_use_rename	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_use_rename<'ast, V>(v: &mut V, node: &'ast UseRename)$/;"	f
visit_use_rename_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_use_rename_mut(&mut self, i: &mut UseRename) {$/;"	P	interface:VisitMut
visit_use_rename_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_use_rename_mut<V>(v: &mut V, node: &mut UseRename)$/;"	f
visit_use_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_use_tree(&mut self, i: &'ast UseTree) {$/;"	P	interface:Visit
visit_use_tree	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_use_tree<'ast, V>(v: &mut V, node: &'ast UseTree)$/;"	f
visit_use_tree_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_use_tree_mut(&mut self, i: &mut UseTree) {$/;"	P	interface:VisitMut
visit_use_tree_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_use_tree_mut<V>(v: &mut V, node: &mut UseTree)$/;"	f
visit_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_variadic(&mut self, i: &'ast Variadic) {$/;"	P	interface:Visit
visit_variadic	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_variadic<'ast, V>(v: &mut V, node: &'ast Variadic)$/;"	f
visit_variadic_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_variadic_mut(&mut self, i: &mut Variadic) {$/;"	P	interface:VisitMut
visit_variadic_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_variadic_mut<V>(v: &mut V, node: &mut Variadic)$/;"	f
visit_variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_variant(&mut self, i: &'ast Variant) {$/;"	P	interface:Visit
visit_variant	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_variant<'ast, V>(v: &mut V, node: &'ast Variant)$/;"	f
visit_variant_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_variant_mut(&mut self, i: &mut Variant) {$/;"	P	interface:VisitMut
visit_variant_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_variant_mut<V>(v: &mut V, node: &mut Variant)$/;"	f
visit_vis_restricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_vis_restricted(&mut self, i: &'ast VisRestricted) {$/;"	P	interface:Visit
visit_vis_restricted	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_vis_restricted<'ast, V>(v: &mut V, node: &'ast VisRestricted)$/;"	f
visit_vis_restricted_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_vis_restricted_mut(&mut self, i: &mut VisRestricted) {$/;"	P	interface:VisitMut
visit_vis_restricted_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_vis_restricted_mut<V>(v: &mut V, node: &mut VisRestricted)$/;"	f
visit_visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_visibility(&mut self, i: &'ast Visibility) {$/;"	P	interface:Visit
visit_visibility	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_visibility<'ast, V>(v: &mut V, node: &'ast Visibility)$/;"	f
visit_visibility_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_visibility_mut(&mut self, i: &mut Visibility) {$/;"	P	interface:VisitMut
visit_visibility_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_visibility_mut<V>(v: &mut V, node: &mut Visibility)$/;"	f
visit_where_clause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_where_clause(&mut self, i: &'ast WhereClause) {$/;"	P	interface:Visit
visit_where_clause	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_where_clause<'ast, V>(v: &mut V, node: &'ast WhereClause)$/;"	f
visit_where_clause_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_where_clause_mut(&mut self, i: &mut WhereClause) {$/;"	P	interface:VisitMut
visit_where_clause_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_where_clause_mut<V>(v: &mut V, node: &mut WhereClause)$/;"	f
visit_where_predicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^    fn visit_where_predicate(&mut self, i: &'ast WherePredicate) {$/;"	P	interface:Visit
visit_where_predicate	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit.rs	/^pub fn visit_where_predicate<'ast, V>(v: &mut V, node: &'ast WherePredicate)$/;"	f
visit_where_predicate_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^    fn visit_where_predicate_mut(&mut self, i: &mut WherePredicate) {$/;"	P	interface:VisitMut
visit_where_predicate_mut	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/gen/visit_mut.rs	/^pub fn visit_where_predicate_mut<V>(v: &mut V, node: &mut WherePredicate)$/;"	f
whitespace	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/lib.rs	/^mod whitespace;$/;"	n
with_capacity	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/fallback.rs	/^    pub fn with_capacity(cap: usize) -> Self {$/;"	P	implementation:TokenStreamBuilder
with_capacity	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/rcvec.rs	/^    pub fn with_capacity(cap: usize) -> Self {$/;"	P	implementation:RcVecBuilder
without_plus	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub fn without_plus(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::ReturnType
without_plus	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub fn without_plus(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::Type
without_plus	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub fn without_plus(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeImplTrait
without_plus	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ty.rs	/^        pub fn without_plus(input: ParseStream) -> Result<Self> {$/;"	P	implementation:parsing::TypeTraitObject
word_break	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.56/src/parse.rs	/^fn word_break(input: Cursor) -> Result<Cursor, Reject> {$/;"	f
wrap_bare_struct	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/expr.rs	/^    fn wrap_bare_struct(tokens: &mut TokenStream, e: &Expr) {$/;"	f	module:printing
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/camelcase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/classcase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/pascalcase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/sentencecase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/snakecase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/titlecase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
wrapped_in_bad_chars	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/cases/traincase/mod.rs	/^    fn wrapped_in_bad_chars() {$/;"	f	module:tests
xid_ok	/home/trey/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-2.0.15/src/ident.rs	/^pub(crate) fn xid_ok(symbol: &str) -> bool {$/;"	f