slog-json 2.0.0-alpha2

JSON drain for slog-rs
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
!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
A	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const A: YearFlags = YearFlags(0o15); pub const AG: YearFlags = YearFlags(0o05);$/;"	c
ASCII_LOWERCASE_MAP	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^static ASCII_LOWERCASE_MAP: [u8; 256] =$/;"	c
Add for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Add<OldDuration> for Date<Tz> {$/;"	i
Add for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Add<OldDuration> for DateTime<Tz> {$/;"	i
Add for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl<Tz: TimeZone> Add<FixedOffset> for DateTime<Tz> {$/;"	i
Add for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Add for Duration {$/;"	i
Add for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl Add<OldDuration> for NaiveDate {$/;"	i
Add for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl Add<OldDuration> for NaiveDateTime {$/;"	i
Add for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl Add<FixedOffset> for NaiveDateTime {$/;"	i
Add for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl Add<OldDuration> for NaiveTime {$/;"	i
Add for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl Add<FixedOffset> for NaiveTime {$/;"	i
Add for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Add<Duration> for SteadyTime {$/;"	i
Add for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl Add<Duration> for SteadyTime {$/;"	i
Add for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Add<Duration> for SteadyTime {$/;"	i
Add for Timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Add<Duration> for Timespec {$/;"	i
Add for Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Add<Duration> for Tm {$/;"	i
ArrayVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<A> ArrayVisitor<A> {$/;"	i
ArrayVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^struct ArrayVisitor<A> {$/;"	s
AsFmtSerializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^struct AsFmtSerializer<F>(pub F)$/;"	s
AsMut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl AsMut<Vec<u8>> for ByteBuf {$/;"	i
AsMut for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl AsMut<[u8]> for ByteBuf {$/;"	i
AsRef	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl AsRef<Vec<u8>> for ByteBuf {$/;"	i
AsRef for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl AsRef<[u8]> for ByteBuf {$/;"	i
B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const B: YearFlags = YearFlags(0o14); pub const BA: YearFlags = YearFlags(0o04);$/;"	c
BAD_FORMAT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const BAD_FORMAT:   ParseError = ParseError(ParseErrorKind::BadFormat);$/;"	c
BB	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const BB: u8 = b'b';  \/\/ \\x08$/;"	c
BS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^const BS: bool = true; \/\/ backslash \\x5C$/;"	c
BS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const BS: u8 = b'\\\\'; \/\/ \\x5C$/;"	c
BoolVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^pub struct BoolVisitor;$/;"	s
BorrowedKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> BorrowedKV<'a> {$/;"	i
BorrowedKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct BorrowedKV<'a>(#[doc(hidden)]$/;"	s
BorrowedKVIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct BorrowedKVIterator<'a> {$/;"	s
Bounded	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^        impl Bounded for $t {$/;"	i
Bounded	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^pub trait Bounded {$/;"	t
ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl ByteBuf {$/;"	i
ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    pub struct ByteBuf {$/;"	s
ByteBufDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct ByteBufDeserializer<E> {$/;"	s
ByteBufVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    pub struct ByteBufVisitor;$/;"	s
Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> Bytes<'a> {$/;"	i
Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^pub struct Bytes<'a> {$/;"	s
BytesDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct BytesDeserializer<'a, E> {$/;"	s
C	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const C: YearFlags = YearFlags(0o13); pub const CB: YearFlags = YearFlags(0o03);$/;"	c
CT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^const CT: bool = true; \/\/ control character \\x00...\\x1F$/;"	c
CharEscape	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl CharEscape {$/;"	i
CharEscape	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub enum CharEscape {$/;"	g
CharVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^struct CharVisitor;$/;"	s
CheckOwned	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^        struct CheckOwned;$/;"	s
Clone for InternalFixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl Clone for InternalFixed {$/;"	i
Clone for InternalNumeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl Clone for InternalNumeric {$/;"	i
Clone for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl Clone for Map<String, Value> {$/;"	i
Clone for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl Clone for SteadyTime {$/;"	i
Clone for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Clone for SteadyTime {$/;"	i
CompactFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub struct CompactFormatter;$/;"	s
Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub struct Compound<'a, W: 'a, F: 'a> {$/;"	s
Content	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub enum Content {$/;"	g
ContentDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<E> ContentDeserializer<E> {$/;"	i
ContentDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub struct ContentDeserializer<E> {$/;"	s
ContentRefDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a, E> ContentRefDeserializer<'a, E> {$/;"	i
ContentRefDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub struct ContentRefDeserializer<'a, E> {$/;"	s
ContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^struct ContentVisitor;$/;"	s
Copy for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Copy for Date<Tz> where <Tz as TimeZone>::Offset: Copy {}$/;"	i
Copy for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Copy for DateTime<Tz> where <Tz as TimeZone>::Offset: Copy {}$/;"	i
CowStrDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct CowStrDeserializer<'a, E> {$/;"	s
D	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const D: YearFlags = YearFlags(0o12); pub const DC: YearFlags = YearFlags(0o02);$/;"	c
Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Date<Tz> where Tz::Offset: fmt::Display {$/;"	i
Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Date<Tz> {$/;"	i
Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^pub struct Date<Tz: TimeZone> {$/;"	s
DateImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub type DateImpl = i32;$/;"	T
DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl DateTime<FixedOffset> {$/;"	i
DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> DateTime<Tz> where Tz::Offset: fmt::Display {$/;"	i
DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> DateTime<Tz> {$/;"	i
DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^pub struct DateTime<Tz: TimeZone> {$/;"	s
DateTimeVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    struct DateTimeVisitor;$/;"	s
Datelike	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub trait Datelike: Sized {$/;"	t
Datelike for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Datelike for Date<Tz> {$/;"	i
Datelike for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Datelike for DateTime<Tz> {$/;"	i
Datelike for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl Datelike for NaiveDate {$/;"	i
Datelike for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl Datelike for NaiveDateTime {$/;"	i
Debug for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl Debug for Error {$/;"	i
Debug for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl Debug for Map<String, Value> {$/;"	i
Debug for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^impl Debug for Number {$/;"	i
Decodable for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl Decodable for DateTime<FixedOffset> {$/;"	i
Decodable for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl Decodable for DateTime<Local> {$/;"	i
Decodable for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl Decodable for DateTime<UTC> {$/;"	i
Decodable for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl Decodable for NaiveDate {$/;"	i
Decodable for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    impl Decodable for NaiveDateTime {$/;"	i
Decodable for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    impl Decodable for NaiveTime {$/;"	i
Default for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl Default for Map<String, Value> {$/;"	i
Default for Parsed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^impl Default for Parsed {$/;"	i
Default for PrettyFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a> Default for PrettyFormatter<'a> {$/;"	i
Default for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl Default for Value {$/;"	i
DelayedFormat	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub struct DelayedFormat<I> {$/;"	s
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            impl<$($name: Deserialize),+> Deserialize for ($($name,)+) {$/;"	i
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            impl<T> Deserialize for [T; $len]$/;"	i
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl Deserialize for $ty {$/;"	i
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl<$($typaram),*> Deserialize for $ty$/;"	i
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for () {$/;"	i
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T> Deserialize for [T; 0]$/;"	i
Deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait Deserialize: Sized {$/;"	t
Deserialize for Arc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T: Deserialize> Deserialize for Arc<T> {$/;"	i
Deserialize for Box	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for Box<str> {$/;"	i
Deserialize for Box	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T: Deserialize> Deserialize for Box<T> {$/;"	i
Deserialize for Box	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T: Deserialize> Deserialize for Box<[T]> {$/;"	i
Deserialize for Content	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl Deserialize for Content {$/;"	i
Deserialize for Cow	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<'a, T: ?Sized> Deserialize for Cow<'a, T> where T: ToOwned, T::Owned: Deserialize, {$/;"	i
Deserialize for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for Duration {$/;"	i
Deserialize for Field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl Deserialize for Field {$/;"	i
Deserialize for IgnoredAny	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for IgnoredAny {$/;"	i
Deserialize for NonZero	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T> Deserialize for NonZero<T> where T: Deserialize + PartialEq + Zeroable + Zero {$/;"	i
Deserialize for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^impl Deserialize for Number {$/;"	i
Deserialize for Option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T> Deserialize for Option<T> where T: Deserialize {$/;"	i
Deserialize for PhantomData	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T> Deserialize for PhantomData<T> {$/;"	i
Deserialize for Rc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T: Deserialize> Deserialize for Rc<T> {$/;"	i
Deserialize for Result	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T, E> Deserialize for Result<T, E> where T: Deserialize, E: Deserialize {$/;"	i
Deserialize for String	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for String {$/;"	i
Deserialize for bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for bool {$/;"	i
Deserialize for char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for char {$/;"	i
Deserialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for net::IpAddr {$/;"	i
Deserialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for net::Ipv4Addr {$/;"	i
Deserialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for net::Ipv6Addr {$/;"	i
Deserialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for net::SocketAddr {$/;"	i
Deserialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for net::SocketAddrV4 {$/;"	i
Deserialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for net::SocketAddrV6 {$/;"	i
Deserialize for path	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Deserialize for path::PathBuf {$/;"	i
DeserializeSeed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait DeserializeSeed: Sized {$/;"	t
DeserializeSeed for PhantomData	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<T> DeserializeSeed for PhantomData<T>$/;"	i
DeserializeSeed for TagOrContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl DeserializeSeed for TagOrContentVisitor {$/;"	i
DeserializeSeed for TaggedContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<T> DeserializeSeed for TaggedContentVisitor<T>$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    type Deserializer = Self;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait Deserializer: Sized {$/;"	t
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^            type Deserializer = $name<E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = ByteBufDeserializer<E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = BytesDeserializer<'a, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = CowStrDeserializer<'a, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = MapDeserializer<btree_map::IntoIter<K, V>, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = MapDeserializer<hash_map::IntoIter<K, V>, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = SeqDeserializer<btree_set::IntoIter<T>, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = SeqDeserializer<hash_set::IntoIter<T>, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = SeqDeserializer<vec::IntoIter<T>, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = StrDeserializer<'a, E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = StringDeserializer<E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer = UnitDeserializer<E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Deserializer: de::Deserializer<Error=E>;$/;"	T
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a> Deserializer<read::SliceRead<'a>> {$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a> Deserializer<read::StrRead<'a>> {$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<I> Deserializer<read::IteratorRead<I>>$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<R: Read> Deserializer<R> {$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<R> Deserializer<R> {$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<R> Deserializer<read::IteratorRead<io::Bytes<R>>>$/;"	i
Deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^pub struct Deserializer<R> {$/;"	s
Deserializer for ContentDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<E> Deserializer for ContentDeserializer<E>$/;"	i
Deserializer for ContentRefDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a, E> Deserializer for ContentRefDeserializer<'a, E>$/;"	i
Deserializer for MissingFieldDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/private.rs	/^    impl<E> Deserializer for MissingFieldDeserializer<E>$/;"	i
Deserializer for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^impl Deserializer for Number {$/;"	i
Discard	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct Discard;$/;"	s
Display for DuplicateField	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl Display for DuplicateField {$/;"	i
Display for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl Display for Error {$/;"	i
Display for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^impl Display for Error {$/;"	i
Display for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl Display for Error {$/;"	i
Display for ErrorCode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl Display for ErrorCode {$/;"	i
Display for Expected	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<'a> Display for Expected + 'a {$/;"	i
Display for InvalidLength	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl<'a> Display for InvalidLength<'a> {$/;"	i
Display for InvalidType	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl<'a> Display for InvalidType<'a> {$/;"	i
Display for InvalidValue	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl<'a> Display for InvalidValue<'a> {$/;"	i
Display for MissingField	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl Display for MissingField {$/;"	i
Display for OneOf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl Display for OneOf {$/;"	i
Display for UnknownField	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl<'a> Display for UnknownField<'a> {$/;"	i
Display for UnknownVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        impl<'a> Display for UnknownVariant<'a> {$/;"	i
Display for Unsupported	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^impl Display for Unsupported {$/;"	i
Div for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Div<i32> for Duration {$/;"	i
Drain	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub trait Drain {$/;"	t
Drain for Arc	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain + ?Sized> Drain for Arc<D> {$/;"	i
Drain for Box	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain + ?Sized> Drain for Box<D> {$/;"	i
Drain for CheckOwned	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^        impl Drain for CheckOwned {$/;"	i
Drain for Discard	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Drain for Discard {$/;"	i
Drain for Duplicate	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D1: Drain, D2: Drain> Drain for Duplicate<D1, D2> {$/;"	i
Drain for Filter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Drain for Filter<D> {$/;"	i
Drain for Fuse	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Drain for Fuse<D>$/;"	i
Drain for IgnoreResult	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Drain for IgnoreResult<D> {$/;"	i
Drain for LevelFilter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Drain for LevelFilter<D> {$/;"	i
Drain for Logger	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Drain for Logger {$/;"	i
Drain for MapError	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain, E> Drain for MapError<D, E> {$/;"	i
Drain for std	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Drain for std::sync::Mutex<D> {$/;"	i
DrainExt	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub trait DrainExt: Sized + Drain {$/;"	t
DrainExt for D	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> DrainExt for D {}$/;"	i
Drop for PushFnSerializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Drop for PushFnSerializer<'a> {$/;"	i
Drop for TzReset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Drop for TzReset {$/;"	i
Duplicate	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D1: Drain, D2: Drain> Duplicate<D1, D2> {$/;"	i
Duplicate	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct Duplicate<D1: Drain, D2: Drain> {$/;"	s
DuplicateField	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct DuplicateField {$/;"	s
Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Duration {$/;"	i
Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^pub struct Duration {$/;"	s
DurationVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        struct DurationVisitor;$/;"	s
E	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const E: YearFlags = YearFlags(0o11); pub const ED: YearFlags = YearFlags(0o01);$/;"	c
ESCAPE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^static ESCAPE: [bool; 256] = [$/;"	c
ESCAPE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^static ESCAPE: [u8; 256] = [$/;"	c
Encodable for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl<Tz: TimeZone> Encodable for DateTime<Tz> {$/;"	i
Encodable for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl Encodable for NaiveDate {$/;"	i
Encodable for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    impl Encodable for NaiveDateTime {$/;"	i
Encodable for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    impl Encodable for NaiveTime {$/;"	i
EncodeUtf8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^impl EncodeUtf8 {$/;"	i
EncodeUtf8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^pub struct EncodeUtf8 {$/;"	s
EnumDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct EnumDeserializer {$/;"	s
EnumVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait EnumVisitor: Sized {$/;"	t
Eq for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Eq for Date<Tz> {$/;"	i
Eq for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Eq for DateTime<Tz> {$/;"	i
Eq for InternalFixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl Eq for InternalFixed {$/;"	i
Eq for InternalNumeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl Eq for InternalNumeric {$/;"	i
Eq for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl Eq for SteadyTime {}$/;"	i
Eq for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Eq for SteadyTime {}$/;"	i
Err	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    type Err = ParseError;$/;"	T
Err	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    type Err = ParseError;$/;"	T
Err	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    type Err = ParseError;$/;"	T
Err	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    type Err = ParseError;$/;"	T
Err	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type Err = Error;$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err = ();$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err = (result::Result<D1::Ok, D1::Err>, result::Result<D2::Ok, D2::Err>);$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err = D::Err;$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err = E;$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err = MutexDrainError<D>;$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err = Never;$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Err;$/;"	T
Err	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^            type Err = Never;$/;"	T
Err	/home/dpc/lab/rust/slog/json/lib.rs	/^    type Err = io::Error;$/;"	T
Err	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    type Err = io::Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    type Error = E;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    type Error = V::Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    type Error = V_::Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    type Error: Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait Error: Sized + error::Error {$/;"	t
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/private.rs	/^        type Error = E;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^            type Error = E;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        type Error = E;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Error = E;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct Error {$/;"	s
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/error.rs	/^pub trait Error: Debug + Display {$/;"	t
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    type Error = E;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type Error: Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait Error: Sized + error::Error {$/;"	t
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type Error = S::Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^struct Error {$/;"	s
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    type Error = Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl Error {$/;"	i
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^pub struct Error {$/;"	s
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    type Error = Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type Error = Error;$/;"	T
Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type Error = Error;$/;"	T
Error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub enum Error {$/;"	g
Error for OutOfRangeError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Error for OutOfRangeError {$/;"	i
Error for ParseError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl Error for ParseError {$/;"	i
Error for ParseError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Error for ParseError {$/;"	i
ErrorCode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^pub enum ErrorCode {$/;"	g
ErrorImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^type ErrorImpl = ();$/;"	T
ErrorImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^type ErrorImpl = Box<str>;$/;"	T
ErrorImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^enum ErrorImpl {$/;"	g
Expected	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<'a> Expected for &'a str {$/;"	i
Expected	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait Expected {$/;"	t
Expected for ExpectedInMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl Expected for ExpectedInMap {$/;"	i
Expected for ExpectedInSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl Expected for ExpectedInSeq {$/;"	i
Expected for T	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<T> Expected for T where T: Visitor {$/;"	i
ExpectedInMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^struct ExpectedInMap(usize);$/;"	s
ExpectedInSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^struct ExpectedInSeq(usize);$/;"	s
Extend for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl Extend<(String, Value)> for Map<String, Value> {$/;"	i
F	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const F: YearFlags = YearFlags(0o17); pub const FE: YearFlags = YearFlags(0o07);$/;"	c
FF	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const FF: u8 = b'f';  \/\/ \\x0C$/;"	c
FIELDS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        const FIELDS: &'static [&'static str] = &["secs", "nanos"];$/;"	c
FLAGS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        const FLAGS: [YearFlags; 14] = [A, B, C, D, E, F, G, AG, BA, CB, DC, ED, FE, GF];$/;"	c
FMT_NONE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^        static FMT_NONE: [Item<'static>; 0] = [];$/;"	c
FREQUENCY	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        static mut FREQUENCY: LARGE_INTEGER = 0;$/;"	c
Field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        enum Field { Secs, Nanos };$/;"	g
Field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        enum Field {$/;"	g
FieldVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                struct FieldVisitor;$/;"	s
Filter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Filter<D> {$/;"	i
Filter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct Filter<D: Drain> {$/;"	s
FilterLevel	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl FilterLevel {$/;"	i
FilterLevel	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub enum FilterLevel {$/;"	g
First	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        type First = A;$/;"	T
First	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        type First;$/;"	T
Fixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub enum Fixed {$/;"	g
FixedOffset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl FixedOffset {$/;"	i
FixedOffset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^pub struct FixedOffset {$/;"	s
Fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^enum Fmt<'a> {$/;"	g
FnValue	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct FnValue<V: 'static + Value, F>(pub F)$/;"	s
Foo	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    impl Foo {$/;"	i
Foo	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    struct Foo;$/;"	s
Formatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub trait Formatter {$/;"	t
Formatter for CompactFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl Formatter for CompactFormatter {}$/;"	i
Formatter for PrettyFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a> Formatter for PrettyFormatter<'a> {$/;"	i
From	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl From<Vec<u8>> for ByteBuf {$/;"	i
From	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> From<&'a Vec<u8>> for Bytes<'a> {$/;"	i
From	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a, D : Drain> From<std::sync::PoisonError<std::sync::MutexGuard<'a, D>>> for MutexDrainError<D> {$/;"	i
From for Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> From<&'a [u8]> for Bytes<'a> {$/;"	i
From for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl From<ErrorImpl> for Error {$/;"	i
From for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl From<de::value::Error> for Error {$/;"	i
From for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl From<io::Error> for Error {$/;"	i
From for Error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl From<core::fmt::Error> for Error {$/;"	i
From for Error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl From<std::io::Error> for Error {$/;"	i
From for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            impl From<$signed_ty> for Number {$/;"	i
From for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            impl From<$unsigned_ty> for Number {$/;"	i
From for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            impl From<$ty> for Value {$/;"	i
From for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl From<f32> for Value {$/;"	i
From for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl From<f64> for Value {$/;"	i
From for std	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl From<Error> for std::io::Error {$/;"	i
FromIterator for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl FromIterator<(String, Value)> for Map<String, Value> {$/;"	i
FromPrimitive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^        impl FromPrimitive for $T {$/;"	i
FromPrimitive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^pub trait FromPrimitive: Sized {$/;"	t
FromStr for FilterLevel	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl FromStr for FilterLevel {$/;"	i
Fuse	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> Fuse<D> {$/;"	i
Fuse	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct Fuse<D: Drain> {$/;"	s
G	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const G: YearFlags = YearFlags(0o16); pub const GF: YearFlags = YearFlags(0o06);$/;"	c
HECTONANOSECS_IN_SEC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    const HECTONANOSECS_IN_SEC: i64 = 10_000_000;$/;"	c
HECTONANOSEC_TO_UNIX_EPOCH	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    const HECTONANOSEC_TO_UNIX_EPOCH: i64 = 11_644_473_600 * HECTONANOSECS_IN_SEC;$/;"	c
HEX_DIGITS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^                static HEX_DIGITS: [u8; 16] = *b"0123456789abcdef";$/;"	c
IMPOSSIBLE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const IMPOSSIBLE:   ParseError = ParseError(ParseErrorKind::Impossible);$/;"	c
INFO	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            static mut INFO: mach_timebase_info = mach_timebase_info {$/;"	c
INIT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        static INIT: Once = ONCE_INIT;$/;"	c
INIT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        static INIT: Once = ONCE_INIT;$/;"	c
INVALID	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const INVALID:      ParseError = ParseError(ParseErrorKind::Invalid);$/;"	c
ITEMS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        const ITEMS: &'static [Item<'static>] = &[$/;"	c
ITEMS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        const ITEMS: &'static [Item<'static>] = &[Item::Fixed(Fixed::RFC2822)];$/;"	c
ITEMS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        const ITEMS: &'static [Item<'static>] = &[Item::Fixed(Fixed::RFC3339)];$/;"	c
ITEMS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        const ITEMS: &'static [Item<'static>] = &[$/;"	c
ITEMS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        const ITEMS: &'static [Item<'static>] = &[$/;"	c
ITEMS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        const ITEMS: &'static [Item<'static>] = &[$/;"	c
IgnoreResult	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> IgnoreResult<D> {$/;"	i
IgnoreResult	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct IgnoreResult<D: Drain> {$/;"	s
IgnoredAny	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^pub struct IgnoredAny;$/;"	s
IgnoredAnyVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        struct IgnoredAnyVisitor;$/;"	s
Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^pub struct Impossible<Ok, E> {$/;"	s
Index	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<'a, T: ?Sized> Index for &'a T where T: Index {$/;"	i
Index	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub trait Index: private::Sealed {$/;"	t
Index for String	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl Index for String {$/;"	i
Index for str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl Index for str {$/;"	i
Index for usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl Index for usize {$/;"	i
InternalFixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub struct InternalFixed {$/;"	s
InternalNumeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub struct InternalNumeric {$/;"	s
InternallyTaggedUnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a> InternallyTaggedUnitVisitor<'a> {$/;"	i
InternallyTaggedUnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub struct InternallyTaggedUnitVisitor<'a> {$/;"	s
Into	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl Into<Vec<u8>> for ByteBuf {$/;"	i
Into for Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> Into<&'a [u8]> for Bytes<'a> {$/;"	i
IntoIter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type IntoIter = MapIntoIter;$/;"	T
IntoIter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type IntoIter = MapIter<'a>;$/;"	T
IntoIter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type IntoIter = MapIterMut<'a>;$/;"	T
IntoIterator	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl<'a> IntoIterator for &'a Map<String, Value> {$/;"	i
IntoIterator	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl<'a> IntoIterator for &'a mut Map<String, Value> {$/;"	i
IntoIterator for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl IntoIterator for Map<String, Value> {$/;"	i
InvalidLength	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct InvalidLength<'a> {$/;"	s
InvalidType	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct InvalidType<'a> {$/;"	s
InvalidValue	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct InvalidValue<'a> {$/;"	s
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub enum Item<'a> {$/;"	g
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^    type Item = Item<'a>;$/;"	T
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    type Item = io::Result<u8>;$/;"	T
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    type Item = Result<T>;$/;"	T
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            type Item = $item;$/;"	T
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type Item = (&'a String, &'a Value);$/;"	T
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type Item = (&'a String, &'a mut Value);$/;"	T
Item	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type Item = (String, Value);$/;"	T
Item	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Item = &'a KV;$/;"	T
Item	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Item = &'a OwnedKV;$/;"	T
Iterator for BorrowedKVIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Iterator for BorrowedKVIterator<'a> {$/;"	i
Iterator for OwnedKVListGroupIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Iterator for OwnedKVListGroupIterator<'a> {$/;"	i
Iterator for OwnedKVListIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Iterator for OwnedKVListIterator<'a> {$/;"	i
Iterator for StreamDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<R, T> Iterator for StreamDeserializer<R, T>$/;"	i
Iterator for StrftimeItems	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^impl<'a> Iterator for StrftimeItems<'a> {$/;"	i
IteratorRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^impl<Iter> IteratorRead<Iter>$/;"	i
IteratorRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^pub struct IteratorRead<Iter>$/;"	s
Json	/home/dpc/lab/rust/slog/json/lib.rs	/^impl<W> Json<W>$/;"	i
Json	/home/dpc/lab/rust/slog/json/lib.rs	/^pub struct Json<W: io::Write> {$/;"	s
Json	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^impl<W> Json<W>$/;"	i
Json	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^pub struct Json<W: io::Write> {$/;"	s
JsonBuilder	/home/dpc/lab/rust/slog/json/lib.rs	/^impl<W> JsonBuilder<W>$/;"	i
JsonBuilder	/home/dpc/lab/rust/slog/json/lib.rs	/^pub struct JsonBuilder<W: io::Write> {$/;"	s
JsonBuilder	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^impl<W> JsonBuilder<W>$/;"	i
JsonBuilder	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^pub struct JsonBuilder<W: io::Write> {$/;"	s
KV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl KV for () {$/;"	i
KV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T: KV, R: KV> KV for (T, R) {$/;"	i
KV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub trait KV {$/;"	t
KV for Arc	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T> KV for Arc<T>$/;"	i
KV for BorrowedKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> KV for BorrowedKV<'a> {$/;"	i
KV for Box	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T> KV for Box<T>$/;"	i
KV for OwnedKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl KV for OwnedKV {$/;"	i
KV for SingleKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<V> KV for SingleKV<V>$/;"	i
Key	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type Key = &'static str;$/;"	T
LEAP_FLAGS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        const LEAP_FLAGS: [YearFlags; 7] = [AG, BA, CB, DC, ED, FE, GF];$/;"	c
LOC	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^        static LOC : $crate::RecordLocation = $crate::RecordLocation {$/;"	c
LOCK	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        static mut LOCK: *mut Mutex<()> = 0 as *mut _;$/;"	c
LOG_LEVEL_NAMES	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub static LOG_LEVEL_NAMES: [&'static str; 7] =$/;"	c
LOG_LEVEL_SHORT_NAMES	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub static LOG_LEVEL_SHORT_NAMES: [&'static str; 7] =$/;"	c
LONG_MONTHS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    static LONG_MONTHS: [&'static str; 12] =$/;"	c
LONG_MONTH_SUFFIXES	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^    static LONG_MONTH_SUFFIXES: [&'static str; 12] =$/;"	c
LONG_WEEKDAYS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    static LONG_WEEKDAYS: [&'static str; 7] =$/;"	c
LONG_WEEKDAY_SUFFIXES	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^    static LONG_WEEKDAY_SUFFIXES: [&'static str; 7] =$/;"	c
LenHint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^trait LenHint: Iterator {$/;"	t
LenHint for I	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^impl<I: ExactSizeIterator> LenHint for I {$/;"	i
LenHint for I	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^impl<I: Iterator> LenHint for I {$/;"	i
Level	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Level {$/;"	i
Level	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub enum Level {$/;"	g
LevelFilter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> LevelFilter<D> {$/;"	i
LevelFilter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct LevelFilter<D: Drain> {$/;"	s
LineColIterator	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^pub struct LineColIterator<Iter: Iterator<Item=io::Result<u8>>> {$/;"	s
Local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^impl Local {$/;"	i
Local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^pub struct Local;$/;"	s
LocalResult	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^impl<T: fmt::Debug> LocalResult<T> {$/;"	i
LocalResult	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^impl<T> LocalResult<T> {$/;"	i
LocalResult	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^impl<Tz: TimeZone> LocalResult<Date<Tz>> {$/;"	i
LocalResult	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^pub enum LocalResult<T> {$/;"	g
Logger	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Logger {$/;"	i
Logger	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct Logger {$/;"	s
MAX	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^pub const MAX: Date<UTC> = Date { date: naive::date::MAX, offset: UTC };$/;"	c
MAX	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^pub const MAX: NaiveDate = NaiveDate { ymdf: (MAX_YEAR << 13) | (365 << 4) | 0o17 \/*F*\/ };$/;"	c
MAX	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^pub const MAX: Duration = Duration {$/;"	c
MAX_BITS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^const MAX_BITS: usize = 44;$/;"	c
MAX_DAYS_FROM_YEAR_0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^const MAX_DAYS_FROM_YEAR_0: i32 = MAX_YEAR * 365 +$/;"	c
MAX_MDL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const MAX_MDL: u32 = (12 << 6) | (31 << 1) | 1;$/;"	c
MAX_OL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const MAX_OL: u32 = 366 << 1; \/\/ larger than the non-leap last day `(365 << 1) | 1`$/;"	c
MAX_ONE_B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const MAX_ONE_B: u32   =     0x80;$/;"	c
MAX_SECS_BITS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^const MAX_SECS_BITS: usize = 44;$/;"	c
MAX_THREE_B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const MAX_THREE_B: u32 =  0x10000;$/;"	c
MAX_TWO_B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const MAX_TWO_B: u32   =    0x800;$/;"	c
MAX_YEAR	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const MAX_YEAR: DateImpl = i32::MAX >> 13;$/;"	c
MAX_YEAR	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^const MAX_YEAR: i32 = internals::MAX_YEAR;$/;"	c
MDL_TO_OL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    static MDL_TO_OL: [i8; (MAX_MDL as usize + 1)] = [$/;"	c
MICROS_PER_DAY	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^        const MICROS_PER_DAY: i64 = 86400_000_000;$/;"	c
MICROS_PER_SEC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const MICROS_PER_SEC: i64 = 1000_000;$/;"	c
MILLIS_PER_SEC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const MILLIS_PER_SEC: i64 = 1000;$/;"	c
MIN	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^pub const MIN: Date<UTC> = Date { date: naive::date::MIN, offset: UTC };$/;"	c
MIN	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^pub const MIN: NaiveDate = NaiveDate { ymdf: (MIN_YEAR << 13) | (1 << 4) | 0o07 \/*FE*\/ };$/;"	c
MIN	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^pub const MIN: Duration = Duration {$/;"	c
MIN_DAYS_FROM_YEAR_0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^const MIN_DAYS_FROM_YEAR_0: i32 = (MIN_YEAR + 400_000) * 365 +$/;"	c
MIN_MDL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const MIN_MDL: u32 = (1 << 6) | (1 << 1);$/;"	c
MIN_OL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const MIN_OL: u32 = 1 << 1;$/;"	c
MIN_YEAR	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub const MIN_YEAR: DateImpl = i32::MIN >> 13;$/;"	c
MIN_YEAR	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^const MIN_YEAR: i32 = internals::MIN_YEAR;$/;"	c
Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl Map<String, Value> {$/;"	i
Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^pub struct Map<K, V> {$/;"	s
MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, E> MapDeserializer<I, E>$/;"	i
MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct MapDeserializer<I, E>$/;"	s
MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl MapDeserializer {$/;"	i
MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct MapDeserializer {$/;"	s
MapError	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain, E> MapError<D, E> {$/;"	i
MapError	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct MapError<D: Drain, E> {$/;"	s
MapImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapImpl<K, V> = BTreeMap<K, V>;$/;"	T
MapImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapImpl<K, V> = LinkedHashMap<K, V>;$/;"	T
MapIntoIter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^pub struct MapIntoIter {$/;"	s
MapIntoIterImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapIntoIterImpl = btree_map::IntoIter<String, Value>;$/;"	T
MapIntoIterImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapIntoIterImpl = linked_hash_map::IntoIter<String, Value>;$/;"	T
MapIter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^pub struct MapIter<'a> {$/;"	s
MapIterImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapIterImpl<'a> = btree_map::Iter<'a, String, Value>;$/;"	T
MapIterImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapIterImpl<'a> = linked_hash_map::Iter<'a, String, Value>;$/;"	T
MapIterMut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^pub struct MapIterMut<'a> {$/;"	s
MapIterMutImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapIterMutImpl<'a> = btree_map::IterMut<'a, String, Value>;$/;"	T
MapIterMutImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapIterMutImpl<'a> = linked_hash_map::IterMut<'a, String, Value>;$/;"	T
MapKeySerializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^struct MapKeySerializer<'a, W: 'a, F: 'a> {$/;"	s
MapKeys	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^pub struct MapKeys<'a> {$/;"	s
MapKeysImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapKeysImpl<'a> = btree_map::Keys<'a, String, Value>;$/;"	T
MapKeysImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapKeysImpl<'a> = linked_hash_map::Keys<'a, String, Value>;$/;"	T
MapValues	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^pub struct MapValues<'a> {$/;"	s
MapValuesImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapValuesImpl<'a> = btree_map::Values<'a, String, Value>;$/;"	T
MapValuesImpl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^type MapValuesImpl<'a> = linked_hash_map::Values<'a, String, Value>;$/;"	T
MapVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<'a, V_> MapVisitor for &'a mut V_ where V_: MapVisitor {$/;"	i
MapVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait MapVisitor {$/;"	t
MapVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> MapVisitor<'a, R> {$/;"	i
MapVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^struct MapVisitor<'a, R: Read + 'a> {$/;"	s
MapVisitorDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<V_, E> MapVisitorDeserializer<V_, E>$/;"	i
MapVisitorDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct MapVisitorDeserializer<V_, E> {$/;"	s
Mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl Mdf {$/;"	i
Mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub struct Mdf(pub u32);$/;"	s
MissingField	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct MissingField {$/;"	s
MissingFieldDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/private.rs	/^    struct MissingFieldDeserializer<E>(&'static str, PhantomData<E>);$/;"	s
Mul for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Mul<i32> for Duration {$/;"	i
MutexDrainError	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub enum MutexDrainError<D: Drain> {$/;"	g
N	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^enum N {$/;"	g
NANOS_PER_DAY	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^        const NANOS_PER_DAY: i64 = 86400_000_000_000;$/;"	c
NANOS_PER_MICRO	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const NANOS_PER_MICRO: i32 = 1000;$/;"	c
NANOS_PER_MILLI	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const NANOS_PER_MILLI: i32 = 1000_000;$/;"	c
NANOS_PER_SEC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const NANOS_PER_SEC: i32 = 1_000_000_000;$/;"	c
NN	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const NN: u8 = b'n';  \/\/ \\x0A$/;"	c
NONLEAP_FLAGS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        const NONLEAP_FLAGS: [YearFlags; 7] = [A, B, C, D, E, F, G];$/;"	c
NOT_ENOUGH	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const NOT_ENOUGH:   ParseError = ParseError(ParseErrorKind::NotEnough);$/;"	c
NSEC_PER_SEC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^static NSEC_PER_SEC: i32 = 1_000_000_000;$/;"	c
NULL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^        static NULL: Value = Value::Null;$/;"	c
NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl NaiveDate {$/;"	i
NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^pub struct NaiveDate {$/;"	s
NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl NaiveDateTime {$/;"	i
NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^pub struct NaiveDateTime {$/;"	s
NaiveDateTimeVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    struct NaiveDateTimeVisitor;$/;"	s
NaiveDateVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    struct NaiveDateVisitor;$/;"	s
NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl NaiveTime {$/;"	i
NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^pub struct NaiveTime {$/;"	s
NaiveTimeVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    struct NaiveTimeVisitor;$/;"	s
Neg for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Neg for Duration {$/;"	i
Never	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type Never = ();$/;"	T
Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^impl Number {$/;"	i
Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^pub struct Number {$/;"	s
NumberVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^        struct NumberVisitor;$/;"	s
Numeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub enum Numeric {$/;"	g
O	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^const O: bool = false; \/\/ allow unescaped$/;"	c
OL_TO_MDL	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    static OL_TO_MDL: [u8; (MAX_OL as usize + 1)] = [$/;"	c
ONCE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            static ONCE: Once = ONCE_INIT;$/;"	c
ONCE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        static ONCE: Once = ONCE_INIT;$/;"	c
OUT_OF_RANGE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const OUT_OF_RANGE: ParseError = ParseError(ParseErrorKind::OutOfRange);$/;"	c
Of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl Of {$/;"	i
Of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub struct Of(pub u32);$/;"	s
Offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    type Offset = FixedOffset;$/;"	T
Offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    type Offset = FixedOffset;$/;"	T
Offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    type Offset: Offset;$/;"	T
Offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^pub trait Offset: Sized + Clone + fmt::Debug {$/;"	t
Offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    type Offset = UTC;$/;"	T
Offset for FixedOffset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl Offset for FixedOffset {$/;"	i
Offset for UTC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^impl Offset for UTC {$/;"	i
Ok	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    type Ok = Ok;$/;"	T
Ok	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type Ok;$/;"	T
Ok	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type Ok = S::Ok;$/;"	T
Ok	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type Ok = ();$/;"	T
Ok	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type Ok = Value;$/;"	T
Ok	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Ok = ();$/;"	T
Ok	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Ok = (D1::Ok, D2::Ok);$/;"	T
Ok	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Ok = D::Ok;$/;"	T
Ok	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Ok = Option<D::Ok>;$/;"	T
Ok	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    type Ok;$/;"	T
Ok	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^            type Ok = ();$/;"	T
Ok	/home/dpc/lab/rust/slog/json/lib.rs	/^    type Ok = ();$/;"	T
Ok	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    type Ok = ();$/;"	T
OneOf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^struct OneOf {$/;"	s
OptionVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^struct OptionVisitor<T> {$/;"	s
Ord for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Ord for Date<Tz> {$/;"	i
Ord for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Ord for DateTime<Tz> {$/;"	i
Ord for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl Ord for SteadyTime {$/;"	i
Ord for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Ord for SteadyTime {$/;"	i
Ord for Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Ord for Tm {$/;"	i
OutOfRangeError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^pub struct OutOfRangeError(());$/;"	s
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    type Output = Date<Tz>;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    type Output = DateTime<Tz>;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    type Output = NaiveDate;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    type Output = NaiveDateTime;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    type Output = NaiveTime;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    type Output = DateTime<Tz>;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    type Output = NaiveDateTime;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    type Output = NaiveTime;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    type Output = Value;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type Output = Value;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    type Output = Duration;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    type Output = Duration;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    type Output = SteadyTime;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    type Output = Timespec;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    type Output = Tm;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            type Output = Duration;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            type Output = SteadyTime;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        type Output = Duration;$/;"	T
Output	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        type Output = SteadyTime;$/;"	T
OwnedKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct OwnedKV(#[doc(hidden)]$/;"	s
OwnedKVList	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl OwnedKVList {$/;"	i
OwnedKVList	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct OwnedKVList {$/;"	s
OwnedKVListGroupIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> OwnedKVListGroupIterator<'a> {$/;"	i
OwnedKVListGroupIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct OwnedKVListGroupIterator<'a> {$/;"	s
OwnedKVListIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> OwnedKVListIterator<'a> {$/;"	i
OwnedKVListIterator	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct OwnedKVListIterator<'a> {$/;"	s
OwnedKVListNode	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^struct OwnedKVListNode {$/;"	s
OwnedKeyValueList	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type OwnedKeyValueList = OwnedKVList;$/;"	T
POW10	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^static POW10: [f64; 309] =$/;"	c
Pad	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub enum Pad {$/;"	g
Pair	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    impl<A, B> Pair for (A, B) {$/;"	i
Pair	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    pub trait Pair {$/;"	t
PairDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^struct PairDeserializer<A, B, E>(A, B, PhantomData<E>);$/;"	s
PairVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^struct PairVisitor<A, B, E>(Option<A>, Option<B>, PhantomData<E>);$/;"	s
ParseError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub struct ParseError(ParseErrorKind);$/;"	s
ParseError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub enum ParseError {$/;"	g
ParseErrorKind	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^enum ParseErrorKind {$/;"	g
ParseResult	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub type ParseResult<T> = Result<T, ParseError>;$/;"	T
Parsed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^impl Parsed {$/;"	i
Parsed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^pub struct Parsed {$/;"	s
PartialEq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone, Tz2: TimeZone> PartialEq<Date<Tz2>> for Date<Tz> {$/;"	i
PartialEq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone, Tz2: TimeZone> PartialEq<DateTime<Tz2>> for DateTime<Tz> {$/;"	i
PartialEq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            impl PartialEq<Value> for $ty {$/;"	i
PartialEq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            impl<'a> PartialEq<$ty> for &'a Value {$/;"	i
PartialEq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            impl<'a> PartialEq<$ty> for &'a mut Value {$/;"	i
PartialEq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<'a> PartialEq<Value> for &'a str {$/;"	i
PartialEq for InternalFixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl PartialEq for InternalFixed {$/;"	i
PartialEq for InternalNumeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl PartialEq for InternalNumeric {$/;"	i
PartialEq for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl PartialEq for Map<String, Value> {$/;"	i
PartialEq for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl PartialEq for SteadyTime {$/;"	i
PartialEq for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl PartialEq for SteadyTime {$/;"	i
PartialEq for String	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl PartialEq<Value> for String {$/;"	i
PartialEq for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            impl PartialEq<$ty> for Value {$/;"	i
PartialEq for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl PartialEq<String> for Value {$/;"	i
PartialEq for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl PartialEq<str> for Value {$/;"	i
PartialEq for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<'a> PartialEq<&'a str> for Value {$/;"	i
PartialEq for str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl PartialEq<Value> for str {$/;"	i
PartialOrd for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> PartialOrd for Date<Tz> {$/;"	i
PartialOrd for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> PartialOrd for DateTime<Tz> {$/;"	i
PartialOrd for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl PartialOrd for SteadyTime {$/;"	i
PartialOrd for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl PartialOrd for SteadyTime {$/;"	i
PartialOrd for Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl PartialOrd for Tm {$/;"	i
PathBufVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^struct PathBufVisitor;$/;"	s
Pattern_White_Space	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^pub fn Pattern_White_Space(c: char) -> bool {$/;"	f
Pattern_White_Space_table	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const Pattern_White_Space_table: &'static [(char, char)] = &[$/;"	c
PhantomDataVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^pub struct PhantomDataVisitor<T> {$/;"	s
Position	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^pub struct Position {$/;"	s
PreciseTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl PreciseTime {$/;"	i
PreciseTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub struct PreciseTime(u64);$/;"	s
PrettyFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a> PrettyFormatter<'a> {$/;"	i
PrettyFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub struct PrettyFormatter<'a> {$/;"	s
PrimitiveVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                struct PrimitiveVisitor;$/;"	s
PushFnSerializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> PushFnSerializer<'a> {$/;"	i
PushFnSerializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct PushFnSerializer<'a> {$/;"	s
PushFnValue	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct PushFnValue<F>(pub F)$/;"	s
PushLazy	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type PushLazy<T> = PushFnValue<T>;$/;"	T
QU	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^const QU: bool = true; \/\/ quote \\x22$/;"	c
QU	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const QU: u8 = b'"';  \/\/ \\x22$/;"	c
RECONS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^                        const RECONS: &'static [Item<'static>] = &[$($tail),+];$/;"	c
RFC850_FMT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    static RFC850_FMT: &'static str =  "%A, %d-%b-%y %T GMT";$/;"	c
RR	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const RR: u8 = b'r';  \/\/ \\x0D$/;"	c
RS	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^        static RS : $crate::RecordStatic<'static> = record_static!($lvl, $tag);$/;"	c
RS	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^        static RS : $crate::RecordStatic<'static> = slog_record_static!($lvl,$/;"	c
Read	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^pub trait Read {$/;"	t
Read for IteratorRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^impl<Iter> Read for IteratorRead<Iter>$/;"	i
Read for SliceRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^impl<'a> Read for SliceRead<'a> {$/;"	i
Read for StrRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^impl<'a> Read for StrRead<'a> {$/;"	i
Record	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Record<'a> {$/;"	i
Record	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct Record<'a> {$/;"	s
RecordLocation	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct RecordLocation {$/;"	s
RecordStatic	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct RecordStatic<'a> {$/;"	s
Result	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^pub type Result<T> = result::Result<T, Error>;$/;"	T
Result	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type Result<T = ()> = result::Result<T, Error>;$/;"	T
ResultVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        struct ResultVisitor<T, E>(PhantomData<Result<T, E>>);$/;"	s
SCALE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^    static SCALE: [i64; 10] = [0, 100_000_000, 10_000_000, 1_000_000, 100_000, 10_000,$/;"	c
SECS_PER_DAY	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const SECS_PER_DAY: i64 = 86400;$/;"	c
SECS_PER_HOUR	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const SECS_PER_HOUR: i64 = 3600;$/;"	c
SECS_PER_MINUTE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const SECS_PER_MINUTE: i64 = 60;$/;"	c
SECS_PER_WEEK	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^const SECS_PER_WEEK: i64 = 604800;$/;"	c
SE_PRIVILEGE_ENABLED	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        const SE_PRIVILEGE_ENABLED: DWORD = 2;$/;"	c
SHORT_MONTHS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    static SHORT_MONTHS: [&'static str; 12] =$/;"	c
SHORT_WEEKDAYS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    static SHORT_WEEKDAYS: [&'static str; 7] =$/;"	c
SOME_FUTURE_DATE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        static SOME_FUTURE_DATE: i64 = 1577836800i64; \/\/ 2020-01-01T00:00:00Z$/;"	c
SOME_RECENT_DATE	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        static SOME_RECENT_DATE: i64 = 1325376000i64; \/\/ 2012-01-01T00:00:00Z$/;"	c
STATIC_TERMINATOR_UNIT	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub static STATIC_TERMINATOR_UNIT: () = ();$/;"	c
Sealed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    impl<'a, T: ?Sized> Sealed for &'a T where T: Sealed {}$/;"	i
Sealed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub trait Sealed {}$/;"	t
Sealed for String	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    impl Sealed for String {}$/;"	i
Sealed for str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    impl Sealed for str {}$/;"	i
Sealed for usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    impl Sealed for usize {}$/;"	i
Second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        type Second = B;$/;"	T
Second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        type Second;$/;"	T
Send for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^unsafe impl<Tz: TimeZone> Send for Date<Tz> where <Tz as TimeZone>::Offset: Send {}$/;"	i
Send for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^unsafe impl<Tz: TimeZone> Send for DateTime<Tz> where <Tz as TimeZone>::Offset: Send {}$/;"	i
SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, E> SeqDeserializer<I, E>$/;"	i
SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct SeqDeserializer<I, E> {$/;"	s
SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl SeqDeserializer {$/;"	i
SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct SeqDeserializer {$/;"	s
SeqVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<'a, V> SeqVisitor for &'a mut V where V: SeqVisitor {$/;"	i
SeqVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait SeqVisitor {$/;"	t
SeqVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> SeqVisitor<'a, R> {$/;"	i
SeqVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^struct SeqVisitor<'a, R: Read + 'a> {$/;"	s
SeqVisitorDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<V_, E> SeqVisitorDeserializer<V_, E>$/;"	i
SeqVisitorDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct SeqVisitorDeserializer<V_, E> {$/;"	s
SerdeSerializer	/home/dpc/lab/rust/slog/json/lib.rs	/^impl<S: serde::Serializer> SerdeSerializer<S> {$/;"	i
SerdeSerializer	/home/dpc/lab/rust/slog/json/lib.rs	/^struct SerdeSerializer<S: serde::Serializer> {$/;"	s
SerdeSerializer	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^impl<S: serde::Serializer> SerdeSerializer<S> {$/;"	i
SerdeSerializer	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^struct SerdeSerializer<S: serde::Serializer> {$/;"	s
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^            impl<$($T),+> Serialize for ($($T,)+)$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^        impl Serialize for $ty {$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^        impl<T> Serialize for [T; $len] where T: Serialize {$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for () {$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<'a, T: ?Sized> Serialize for &'a T where T: Serialize {$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<'a, T: ?Sized> Serialize for &'a mut T where T: Serialize {$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for [T]$/;"	i
Serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait Serialize {$/;"	t
Serialize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type Serialize = Value;$/;"	T
Serialize for Arc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for Arc<T>$/;"	i
Serialize for BTreeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<K, V> Serialize for BTreeMap<K, V>$/;"	i
Serialize for BTreeSet	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for BTreeSet<T>$/;"	i
Serialize for BinaryHeap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for BinaryHeap<T>$/;"	i
Serialize for Box	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T: ?Sized> Serialize for Box<T>$/;"	i
Serialize for Cow	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<'a, T: ?Sized> Serialize for Cow<'a, T>$/;"	i
Serialize for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for Duration {$/;"	i
Serialize for HashMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<K, V, H> Serialize for HashMap<K, V, H>$/;"	i
Serialize for HashSet	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T, H> Serialize for HashSet<T, H>$/;"	i
Serialize for LinkedList	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for LinkedList<T>$/;"	i
Serialize for NonZero	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for NonZero<T>$/;"	i
Serialize for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^impl Serialize for Number {$/;"	i
Serialize for Option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for Option<T>$/;"	i
Serialize for PhantomData	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for PhantomData<T> {$/;"	i
Serialize for Rc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for Rc<T>$/;"	i
Serialize for Result	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T, E> Serialize for Result<T, E>$/;"	i
Serialize for String	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for String {$/;"	i
Serialize for Vec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for Vec<T>$/;"	i
Serialize for VecDeque	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<T> Serialize for VecDeque<T>$/;"	i
Serialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for net::IpAddr {$/;"	i
Serialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for net::Ipv4Addr {$/;"	i
Serialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for net::Ipv6Addr {$/;"	i
Serialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for net::SocketAddr {$/;"	i
Serialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for net::SocketAddrV4 {$/;"	i
Serialize for net	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for net::SocketAddrV6 {$/;"	i
Serialize for ops	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<A> Serialize for ops::Range<A>$/;"	i
Serialize for ops	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl<A> Serialize for ops::RangeInclusive<A>$/;"	i
Serialize for path	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for path::Path {$/;"	i
Serialize for path	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for path::PathBuf {$/;"	i
Serialize for str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^impl Serialize for str {$/;"	i
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeMap: SerializeMap<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeMap {$/;"	t
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeMap = S::SerializeMap;$/;"	T
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeMap = Compound<'a, W, F>;$/;"	T
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeMap = Impossible<(), Error>;$/;"	T
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeMap = SerializeMap;$/;"	T
SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub struct SerializeMap {$/;"	s
SerializeMap for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeMap for Impossible<Ok, E>$/;"	i
SerializeSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeSeq: SerializeSeq<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeSeq {$/;"	t
SerializeSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeSeq = S::SerializeSeq;$/;"	T
SerializeSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeSeq = Compound<'a, W, F>;$/;"	T
SerializeSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeSeq = Impossible<(), Error>;$/;"	T
SerializeSeq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeSeq = SerializeVec;$/;"	T
SerializeSeq for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeSeq for Impossible<Ok, E>$/;"	i
SerializeStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeStruct: SerializeStruct<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeStruct {$/;"	t
SerializeStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeStruct = S::SerializeStruct;$/;"	T
SerializeStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeStruct = Compound<'a, W, F>;$/;"	T
SerializeStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeStruct = Impossible<(), Error>;$/;"	T
SerializeStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeStruct = SerializeMap;$/;"	T
SerializeStruct for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeStruct for Impossible<Ok, E>$/;"	i
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeStructVariant: SerializeStructVariant<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeStructVariant {$/;"	t
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeStructVariant = S::SerializeStructVariant;$/;"	T
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeStructVariant = Compound<'a, W, F>;$/;"	T
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeStructVariant = Impossible<(), Error>;$/;"	T
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeStructVariant = SerializeStructVariant;$/;"	T
SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub struct SerializeStructVariant {$/;"	s
SerializeStructVariant for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeStructVariant for Impossible<Ok, E>$/;"	i
SerializeTuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeTuple: SerializeTuple<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeTuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeTuple {$/;"	t
SerializeTuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeTuple = S::SerializeTuple;$/;"	T
SerializeTuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeTuple = Compound<'a, W, F>;$/;"	T
SerializeTuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeTuple = Impossible<(), Error>;$/;"	T
SerializeTuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeTuple = SerializeVec;$/;"	T
SerializeTuple for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeTuple for Impossible<Ok, E>$/;"	i
SerializeTupleStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeTupleStruct: SerializeTupleStruct<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeTupleStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeTupleStruct {$/;"	t
SerializeTupleStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeTupleStruct = S::SerializeTupleStruct;$/;"	T
SerializeTupleStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeTupleStruct = Compound<'a, W, F>;$/;"	T
SerializeTupleStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeTupleStruct = Impossible<(), Error>;$/;"	T
SerializeTupleStruct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeTupleStruct = SerializeVec;$/;"	T
SerializeTupleStruct for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeTupleStruct for Impossible<Ok, E>$/;"	i
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    type SerializeTupleVariant: SerializeTupleVariant<Ok=Self::Ok, Error=Self::Error>;$/;"	T
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait SerializeTupleVariant {$/;"	t
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    type SerializeTupleVariant = S::SerializeTupleVariant;$/;"	T
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeTupleVariant = Compound<'a, W, F>;$/;"	T
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    type SerializeTupleVariant = Impossible<(), Error>;$/;"	T
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type SerializeTupleVariant = SerializeTupleVariant;$/;"	T
SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub struct SerializeTupleVariant {$/;"	s
SerializeTupleVariant for Impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^impl<Ok, E> SerializeTupleVariant for Impossible<Ok, E>$/;"	i
SerializeVec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub struct SerializeVec {$/;"	s
Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub trait Serializer: Sized {$/;"	t
Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W> Serializer<W, PrettyFormatter<'a>>$/;"	i
Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<W, F> Serializer<W, F>$/;"	i
Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<W> Serializer<W>$/;"	i
Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub struct Serializer<W, F = CompactFormatter> {$/;"	s
Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct Serializer;$/;"	s
Serializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub trait Serializer {$/;"	t
Serializer for AsFmtSerializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<F> Serializer for AsFmtSerializer<F>$/;"	i
Serializer for TaggedSerializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^impl<S> Serializer for TaggedSerializer<S>$/;"	i
SingleKV	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub struct SingleKV<V>(pub Key, pub V) where V: Value;$/;"	s
SliceRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^impl<'a> SliceRead<'a> {$/;"	i
SliceRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^pub struct SliceRead<'a> {$/;"	s
State	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub enum State {$/;"	g
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl SteadyTime {$/;"	i
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub struct SteadyTime(sys::SteadyTime);$/;"	s
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl SteadyTime {$/;"	i
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        pub struct SteadyTime { t: u64 }$/;"	s
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        pub struct SteadyTime {$/;"	s
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl SteadyTime {$/;"	i
SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub struct SteadyTime {$/;"	s
StrDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct StrDeserializer<'a, E> {$/;"	s
StrRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^impl<'a> StrRead<'a> {$/;"	i
StrRead	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^pub struct StrRead<'a> {$/;"	s
StreamDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^pub struct StreamDeserializer<R, T>$/;"	s
StrftimeItems	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^impl<'a> StrftimeItems<'a> {$/;"	i
StrftimeItems	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^pub struct StrftimeItems<'a> {$/;"	s
StringDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct StringDeserializer<E> {$/;"	s
StringVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^struct StringVisitor;$/;"	s
Sub for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> Sub<OldDuration> for Date<Tz> {$/;"	i
Sub for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Sub<OldDuration> for DateTime<Tz> {$/;"	i
Sub for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl<Tz: TimeZone> Sub<FixedOffset> for DateTime<Tz> {$/;"	i
Sub for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl Sub for Duration {$/;"	i
Sub for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl Sub<OldDuration> for NaiveDate {$/;"	i
Sub for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl Sub<OldDuration> for NaiveDateTime {$/;"	i
Sub for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl Sub<FixedOffset> for NaiveDateTime {$/;"	i
Sub for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl Sub<OldDuration> for NaiveTime {$/;"	i
Sub for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl Sub<FixedOffset> for NaiveTime {$/;"	i
Sub for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Sub for SteadyTime {$/;"	i
Sub for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Sub<Duration> for SteadyTime {$/;"	i
Sub for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl Sub for SteadyTime {$/;"	i
Sub for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl Sub<Duration> for SteadyTime {$/;"	i
Sub for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Sub for SteadyTime {$/;"	i
Sub for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl Sub<Duration> for SteadyTime {$/;"	i
Sub for Timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Sub<Duration> for Timespec {$/;"	i
Sub for Timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Sub<Timespec> for Timespec {$/;"	i
Sub for Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Sub<Duration> for Tm {$/;"	i
Sub for Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Sub<Tm> for Tm {$/;"	i
TAG_CONT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const TAG_CONT: u8    = 0b1000_0000;$/;"	c
TAG_FOUR_B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const TAG_FOUR_B: u8  = 0b1111_0000;$/;"	c
TAG_THREE_B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const TAG_THREE_B: u8 = 0b1110_0000;$/;"	c
TAG_TWO_B	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^const TAG_TWO_B: u8   = 0b1100_0000;$/;"	c
TKP	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        struct TKP {$/;"	s
TL_BUF	/home/dpc/lab/rust/slog/json/lib.rs	/^    static TL_BUF: RefCell<String> = RefCell::new(String::with_capacity(128))$/;"	c
TL_BUF	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    static TL_BUF: RefCell<String> = RefCell::new(String::with_capacity(128))$/;"	c
TOO_LONG	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const TOO_LONG:     ParseError = ParseError(ParseErrorKind::TooLong);$/;"	c
TOO_SHORT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^const TOO_SHORT:    ParseError = ParseError(ParseErrorKind::TooShort);$/;"	c
TT	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const TT: u8 = b't';  \/\/ \\x09$/;"	c
TagOrContent	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub enum TagOrContent {$/;"	g
TagOrContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl TagOrContentVisitor {$/;"	i
TagOrContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^struct TagOrContentVisitor {$/;"	s
TaggedContent	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub struct TaggedContent<T> {$/;"	s
TaggedContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<T> TaggedContentVisitor<T> {$/;"	i
TaggedContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub struct TaggedContentVisitor<T> {$/;"	s
TaggedSerializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^impl<S> TaggedSerializer<S>$/;"	i
TaggedSerializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^struct TaggedSerializer<S> {$/;"	s
Target	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        type Target = [u8];$/;"	T
Target	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    type Target = [u8];$/;"	T
TimeZone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^pub trait TimeZone: Sized + Clone {$/;"	t
TimeZone for FixedOffset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl TimeZone for FixedOffset {$/;"	i
TimeZone for Local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^impl TimeZone for Local {$/;"	i
TimeZone for UTC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^impl TimeZone for UTC {$/;"	i
Timelike	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub trait Timelike: Sized {$/;"	t
Timelike for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> Timelike for DateTime<Tz> {$/;"	i
Timelike for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl Timelike for NaiveDateTime {$/;"	i
Timelike for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl Timelike for NaiveTime {$/;"	i
Timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Timespec {$/;"	i
Timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub struct Timespec { pub sec: i64, pub nsec: i32 }$/;"	s
Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl Tm {$/;"	i
Tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub struct Tm {$/;"	s
TmFmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub struct TmFmt<'a> {$/;"	s
ToJson	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub trait ToJson {$/;"	t
ToJson for T	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<T: ?Sized> ToJson for T$/;"	i
ToPrimitive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^        impl ToPrimitive for $T {$/;"	i
ToPrimitive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^pub trait ToPrimitive {$/;"	t
Type	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct Type<'a>(&'a Value);$/;"	s
TzReset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    struct TzReset {$/;"	s
TzReset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub struct TzReset {$/;"	s
TzReset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub struct TzReset;$/;"	s
U	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^const U: u8 = b'u';   \/\/ \\x00...\\x1F except the ones above$/;"	c
UTC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^impl UTC {$/;"	i
UTC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^pub struct UTC;$/;"	s
Unexpected	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub enum Unexpected<'a> {$/;"	g
UnitDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub struct UnitDeserializer<E> {$/;"	s
UnitOnly	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    pub struct UnitOnly<E> {$/;"	s
UnitVariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> UnitVariantVisitor<'a, R> {$/;"	i
UnitVariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^struct UnitVariantVisitor<'a, R: Read + 'a> {$/;"	s
UnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^pub struct UnitVisitor;$/;"	s
UnknownField	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct UnknownField<'a> {$/;"	s
UnknownVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^        struct UnknownVariant<'a> {$/;"	s
Unsupported	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^enum Unsupported {$/;"	g
UntaggedUnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a> UntaggedUnitVisitor<'a> {$/;"	i
UntaggedUnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^pub struct UntaggedUnitVisitor<'a> {$/;"	s
VARIANTS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        const VARIANTS: &'static [&'static str] = &["Ok", "Err"];$/;"	c
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        type Value = DateTime<FixedOffset>;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        type Value = NaiveDate;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        type Value = NaiveDateTime;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        type Value = NaiveTime;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        type Value = ByteBuf;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    type Value = ();$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    type Value = Content;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    type Value = TagOrContent;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    type Value = TaggedContent<T>;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    type Value = $ty;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    type Value = Field;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                type Value = ($($name,)+);$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                type Value = [T; $len];$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            type Value = $ty;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            type Value = Duration;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            type Value = IgnoredAny;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            type Value = Result<T, E>;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = ();$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = Option<T>;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = PhantomData<T>;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = String;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = [T; 0];$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = bool;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = char;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    type Value = path::PathBuf;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    type Value = T;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    type Value;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            type Value = Map<String, Value>;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            type Value = Number;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            type Value = Value;$/;"	T
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl Value {$/;"	i
Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub enum Value {$/;"	g
Value	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^        impl Value for $t {$/;"	i
Value	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Value for () {$/;"	i
Value	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Value for &'a str {$/;"	i
Value	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub trait Value {$/;"	t
Value for Arc	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T> Value for Arc<T>$/;"	i
Value for Box	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Value for Box<Value + Send + 'static> {$/;"	i
Value for F	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<V: 'static + Value, F> Value for F$/;"	i
Value for FnValue	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<V: 'static + Value, F> Value for FnValue<V, F>$/;"	i
Value for Option	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T: Value> Value for Option<T> {$/;"	i
Value for PushFnValue	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<F> Value for PushFnValue<F>$/;"	i
Value for Rc	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T> Value for Rc<T>$/;"	i
Value for String	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Value for String {$/;"	i
Value for core	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<T> Value for core::num::Wrapping<T>$/;"	i
Value for fmt	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<'a> Value for fmt::Arguments<'a> {$/;"	i
Value for str	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl Value for str {$/;"	i
ValueDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        impl<E> ValueDeserializer<E> for $ty$/;"	i
ValueDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> ValueDeserializer<E> for &'a str$/;"	i
ValueDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<E> ValueDeserializer<E> for ()$/;"	i
ValueDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^pub trait ValueDeserializer<E: de::Error = Error> {$/;"	t
ValueDeserializer for BTreeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<K, V, E> ValueDeserializer<E> for BTreeMap<K, V>$/;"	i
ValueDeserializer for BTreeSet	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<T, E> ValueDeserializer<E> for BTreeSet<T>$/;"	i
ValueDeserializer for Cow	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> ValueDeserializer<E> for Cow<'a, str>$/;"	i
ValueDeserializer for HashMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<K, V, E> ValueDeserializer<E> for HashMap<K, V>$/;"	i
ValueDeserializer for HashSet	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<T, E> ValueDeserializer<E> for HashSet<T>$/;"	i
ValueDeserializer for String	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<E> ValueDeserializer<E> for String$/;"	i
ValueDeserializer for Vec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<T, E> ValueDeserializer<E> for Vec<T>$/;"	i
ValueDeserializer for bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> ValueDeserializer<E> for bytes::Bytes<'a>$/;"	i
ValueDeserializer for bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<E> ValueDeserializer<E> for bytes::ByteBuf$/;"	i
ValueSerializer	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub type ValueSerializer<'a> = PushFnSerializer<'a>;$/;"	T
ValueVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^        struct ValueVisitor;$/;"	s
Variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    type Variant: VariantVisitor<Error=Self::Error>;$/;"	T
Variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    type Variant = private::UnitOnly<E>;$/;"	T
Variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    type Variant = Self;$/;"	T
Variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    type Variant = VariantDeserializer;$/;"	T
VariantDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct VariantDeserializer {$/;"	s
VariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait VariantVisitor: Sized {$/;"	t
VariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> VariantVisitor<'a, R> {$/;"	i
VariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^struct VariantVisitor<'a, R: Read + 'a> {$/;"	s
Visitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            impl<$($name: Deserialize),+> Visitor for $visitor<$($name,)+> {$/;"	i
Visitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl<$($typaram),*> Visitor for $visitor_ty<$($typaram),*>$/;"	i
Visitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub trait Visitor: Sized {$/;"	t
Visitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^        struct Visitor;$/;"	s
Visitor for ArrayVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            impl<T> Visitor for ArrayVisitor<[T; $len]> where T: Deserialize {$/;"	i
Visitor for ArrayVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T> Visitor for ArrayVisitor<[T; 0]> where T: Deserialize {$/;"	i
Visitor for BoolVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Visitor for BoolVisitor {$/;"	i
Visitor for CharVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Visitor for CharVisitor {$/;"	i
Visitor for ContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl Visitor for ContentVisitor {$/;"	i
Visitor for DurationVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl Visitor for DurationVisitor {$/;"	i
Visitor for FieldVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                impl Visitor for FieldVisitor {$/;"	i
Visitor for IgnoredAnyVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl Visitor for IgnoredAnyVisitor {$/;"	i
Visitor for InternallyTaggedUnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a> Visitor for InternallyTaggedUnitVisitor<'a> {$/;"	i
Visitor for NumberVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^        impl Visitor for NumberVisitor {$/;"	i
Visitor for PathBufVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Visitor for PathBufVisitor {$/;"	i
Visitor for PhantomDataVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl<T> Visitor for PhantomDataVisitor<T> {$/;"	i
Visitor for PrimitiveVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                impl Visitor for PrimitiveVisitor {$/;"	i
Visitor for ResultVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^        impl<T, E> Visitor for ResultVisitor<T, E>$/;"	i
Visitor for StringVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Visitor for StringVisitor {$/;"	i
Visitor for TagOrContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl Visitor for TagOrContentVisitor {$/;"	i
Visitor for TaggedContentVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<T> Visitor for TaggedContentVisitor<T>$/;"	i
Visitor for UnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^impl Visitor for UnitVisitor {$/;"	i
Visitor for UntaggedUnitVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a> Visitor for UntaggedUnitVisitor<'a> {$/;"	i
Void	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^enum Void {}$/;"	g
Void	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^enum Void {}$/;"	g
Weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^impl Weekday {$/;"	i
Weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub enum Weekday {$/;"	g
WriterFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^struct WriterFormatter<'a, 'b: 'a> {$/;"	s
X	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    struct X {$/;"	s
XX	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    const XX: i8 = -128;$/;"	c
YEAR_DELTAS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    static YEAR_DELTAS: [u8; 401] = [$/;"	c
YEAR_TO_FLAGS	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    static YEAR_TO_FLAGS: [YearFlags; 400] = [$/;"	c
YearFlags	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl YearFlags {$/;"	i
YearFlags	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub struct YearFlags(pub u8);$/;"	s
__slog_static_max_level	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub fn __slog_static_max_level() -> FilterLevel {$/;"	f
_ytab	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        static _ytab: [[i64; 12]; 2] = [$/;"	c
abs	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^fn abs(i: i32) -> i32 {$/;"	f
acquire_privileges	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn acquire_privileges() {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn add(self, rhs: OldDuration) -> Date<Tz> {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn add(self, rhs: OldDuration) -> DateTime<Tz> {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn add(self, rhs: OldDuration) -> NaiveDate {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn add(self, rhs: OldDuration) -> NaiveDateTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn add(self, rhs: OldDuration) -> NaiveTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn add(self, rhs: FixedOffset) -> DateTime<Tz> {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn add(self, rhs: FixedOffset) -> NaiveDateTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn add(self, rhs: FixedOffset) -> NaiveTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn add(self, rhs: Duration) -> Duration {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn add(self, other: Duration) -> SteadyTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn add(self, other: Duration) -> Timespec {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn add(self, other: Duration) -> Tm {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn add(mut self, other: Duration) -> SteadyTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn add(self, other: Duration) -> SteadyTime {$/;"	f
add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn add(mut self, other: Duration) -> SteadyTime {$/;"	f
add_default_keys	/home/dpc/lab/rust/slog/json/lib.rs	/^    pub fn add_default_keys(self) -> Self {$/;"	f
add_default_keys	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    pub fn add_default_keys(self) -> Self {$/;"	f
add_key_value	/home/dpc/lab/rust/slog/json/lib.rs	/^    pub fn add_key_value<T>(mut self, value: slog::OwnedKV<T>) -> Self$/;"	f
add_key_value	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    pub fn add_key_value<T>(mut self, value: slog::OwnedKV<T>) -> Self$/;"	f
add_with_leapsecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^fn add_with_leapsecond<T>(lhs: &T, rhs: i32) -> T$/;"	f
and_hms	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms(&self, hour: u32, min: u32, sec: u32) -> DateTime<Tz> {$/;"	f
and_hms	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms(&self, hour: u32, min: u32, sec: u32) -> NaiveDateTime {$/;"	f
and_hms_micro	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_micro(&self, hour: u32, min: u32, sec: u32, micro: u32) -> DateTime<Tz> {$/;"	f
and_hms_micro	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_micro(&self, hour: u32, min: u32, sec: u32, micro: u32) -> NaiveDateTime {$/;"	f
and_hms_micro_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_micro_opt(&self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_micro_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_micro_opt(&self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_micro_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn and_hms_micro_opt(self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_milli	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_milli(&self, hour: u32, min: u32, sec: u32, milli: u32) -> DateTime<Tz> {$/;"	f
and_hms_milli	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_milli(&self, hour: u32, min: u32, sec: u32, milli: u32) -> NaiveDateTime {$/;"	f
and_hms_milli_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_milli_opt(&self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_milli_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_milli_opt(&self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_milli_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn and_hms_milli_opt(self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_nano	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_nano(&self, hour: u32, min: u32, sec: u32, nano: u32) -> DateTime<Tz> {$/;"	f
and_hms_nano	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_nano(&self, hour: u32, min: u32, sec: u32, nano: u32) -> NaiveDateTime {$/;"	f
and_hms_nano_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_nano_opt(&self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_nano_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_nano_opt(&self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_nano_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn and_hms_nano_opt(self, hour: u32, min: u32, sec: u32,$/;"	f
and_hms_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_hms_opt(&self, hour: u32, min: u32, sec: u32) -> Option<DateTime<Tz>> {$/;"	f
and_hms_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_hms_opt(&self, hour: u32, min: u32, sec: u32) -> Option<NaiveDateTime> {$/;"	f
and_hms_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn and_hms_opt(self, hour: u32, min: u32, sec: u32) -> LocalResult<DateTime<Tz>> {$/;"	f
and_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn and_time(&self, time: NaiveTime) -> Option<DateTime<Tz>> {$/;"	f
and_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn and_time(&self, time: NaiveTime) -> NaiveDateTime {$/;"	f
and_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn and_time(self, time: NaiveTime) -> LocalResult<DateTime<Tz>> {$/;"	f
append	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn append(&self, other: &OwnedKVList) -> OwnedKVList {$/;"	f
array_impls	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^macro_rules! array_impls {$/;"	d
array_impls	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^macro_rules! array_impls {$/;"	d
as_array	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_array(&self) -> Option<&Vec<Value>> {$/;"	f
as_array_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_array_mut(&mut self) -> Option<&mut Vec<Value>> {$/;"	f
as_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_bool(&self) -> Option<bool> {$/;"	f
as_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn as_f64(&self) -> Option<f64> {$/;"	f
as_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_f64(&self) -> Option<f64> {$/;"	f
as_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn as_i64(&self) -> Option<i64> {$/;"	f
as_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_i64(&self) -> Option<i64> {$/;"	f
as_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn as_mut(&mut self) -> &mut Vec<u8> {$/;"	f
as_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn as_mut(&mut self) -> &mut [u8] {$/;"	f
as_null	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_null(&self) -> Option<()> {$/;"	f
as_object	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_object(&self) -> Option<&Map<String, Value>> {$/;"	f
as_object_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_object_mut(&mut self) -> Option<&mut Map<String, Value>> {$/;"	f
as_ref	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn as_ref(&self) -> &Vec<u8> {$/;"	f
as_ref	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn as_ref(&self) -> &[u8] {$/;"	f
as_short_str	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn as_short_str(&self) -> &'static str {$/;"	f
as_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^    pub fn as_str(&self) -> &str {$/;"	f
as_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^fn as_str<'s, R: Read>(read: &R, slice: &'s [u8]) -> Result<&'s str> {$/;"	f
as_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_str(&self) -> Option<&str> {$/;"	f
as_str	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn as_str(&self) -> &'static str {$/;"	f
as_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn as_u64(&self) -> Option<u64> {$/;"	f
as_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn as_u64(&self) -> Option<u64> {$/;"	f
as_usize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn as_usize(&self) -> usize {$/;"	f
asctime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn asctime(&self) -> TmFmt {$/;"	f
at	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn at(clock: Timespec) -> Tm {$/;"	f
at_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn at_utc(clock: Timespec) -> Tm {$/;"	f
b	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! b($/;"	d
bad_type	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn bad_type(self, what: Unsupported) -> S::Error {$/;"	f
bar	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^        fn bar(&self) -> u32 {$/;"	f
begin_array	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn begin_array<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
begin_array_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn begin_array_value<W: ?Sized>(&mut self, writer: &mut W, first: bool) -> Result<()>$/;"	f
begin_object	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn begin_object<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
begin_object_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn begin_object_key<W: ?Sized>(&mut self, writer: &mut W, first: bool) -> Result<()>$/;"	f
begin_object_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn begin_object_value<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
begin_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn begin_string<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
bench_year_flags_from_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn bench_year_flags_from_year(bh: &mut test::Bencher) {$/;"	f
bounded_impl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! bounded_impl {$/;"	d
bsearch_range_table	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^fn bsearch_range_table(c: char, r: &'static [(char, char)]) -> bool {$/;"	f
build	/home/dpc/lab/rust/slog/json/lib.rs	/^    pub fn build(self) -> Json<W> {$/;"	f
build	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    pub fn build(self) -> Json<W> {$/;"	f
bytebuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^mod bytebuf {$/;"	m
bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^pub mod bytes;$/;"	m
call	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    macro_rules! call {$/;"	d
cause	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/error.rs	/^    fn cause(&self) -> Option<&Error> { None }$/;"	f
cause	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn cause(&self) -> Option<&error::Error> {$/;"	f
cause	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn cause(&self) -> Option<&std::error::Error> {$/;"	f
char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn char(s: &str, c1: u8) -> ParseResult<&str> {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    macro_rules! check {$/;"	d
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^            fn check(expected: bool, flags: YearFlags, month1: u32, day1: u32,$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^            fn check(expected: bool, flags: YearFlags, ordinal1: u32, ordinal2: u32) {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^            fn check(flags: YearFlags, month: u32, day: u32) {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^            fn check(flags: YearFlags, ordinal: u32) {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn check((y1,m1,d1): (i32, u32, u32), (y2,m2,d2): (i32, u32, u32), diff: Duration) {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn check((y1,m1,d1): (i32, u32, u32), rhs: Duration, ymd: Option<(i32, u32, u32)>) {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn check(year: i32, month: u32, day: u32, ordinal: u32) {$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn check((y,m,d,h,n,s): (i32,u32,u32,u32,u32,u32), rhs: Duration,$/;"	f
check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        macro_rules! check {$/;"	d
checked_add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn checked_add(&self, rhs: &Duration) -> Option<Duration> {$/;"	f
checked_add_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn checked_add_signed(self, rhs: OldDuration) -> Option<Date<Tz>> {$/;"	f
checked_add_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn checked_add_signed(self, rhs: OldDuration) -> Option<DateTime<Tz>> {$/;"	f
checked_add_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn checked_add_signed(self, rhs: OldDuration) -> Option<NaiveDate> {$/;"	f
checked_add_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn checked_add_signed(self, rhs: OldDuration) -> Option<NaiveDateTime> {$/;"	f
checked_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn checked_sub(&self, rhs: &Duration) -> Option<Duration> {$/;"	f
checked_sub_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn checked_sub_signed(self, rhs: OldDuration) -> Option<Date<Tz>> {$/;"	f
checked_sub_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn checked_sub_signed(self, rhs: OldDuration) -> Option<DateTime<Tz>> {$/;"	f
checked_sub_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn checked_sub_signed(self, rhs: OldDuration) -> Option<NaiveDate> {$/;"	f
checked_sub_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn checked_sub_signed(self, rhs: OldDuration) -> Option<NaiveDateTime> {$/;"	f
clamp_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn clamp_day(day: u32) -> u32 {$/;"	f
clamp_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn clamp_month(month: u32) -> u32 {$/;"	f
clamp_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn clamp_ordinal(ordinal: u32) -> u32 {$/;"	f
clear	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn clear(&mut self) {$/;"	f
clone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    fn clone(&self) -> Self {$/;"	f
clone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn clone(&self) -> Self {$/;"	f
clone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn clone(&self) -> SteadyTime {$/;"	f
clone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn clone(&self) -> SteadyTime {$/;"	f
cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn cmp(&self, other: &Date<Tz>) -> Ordering { self.date.cmp(&other.date) }$/;"	f
cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn cmp(&self, other: &DateTime<Tz>) -> Ordering { self.datetime.cmp(&other.datetime) }$/;"	f
cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn cmp(&self, other: &Tm) -> Ordering {$/;"	f
cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn cmp(&self, other: &SteadyTime) -> Ordering {$/;"	f
cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn cmp(&self, other: &SteadyTime) -> Ordering {$/;"	f
col	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn col(&self) -> usize { self.col }$/;"	f
collect_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>$/;"	f
collect_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>$/;"	f
colon_or_space	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn colon_or_space(s: &str) -> ParseResult<&str> {$/;"	f
column	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn column(&self) -> u32 {$/;"	f
contains_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn contains_key<Q: ?Sized>(&self, key: &Q) -> bool$/;"	f
content	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^mod content;$/;"	m
convert::From for OwnedKVList	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl convert::From<OwnedKV> for OwnedKVList {$/;"	i
core	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^mod core {$/;"	m
core::fmt::Display for Error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl core::fmt::Display for Error {$/;"	i
crit	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! crit($/;"	d
ctime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn ctime(&self) -> TmFmt {$/;"	f
custom	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn custom<T: Display>(msg: T) -> Self;$/;"	f
custom	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn custom<T: Display>(_msg: T) -> Self {$/;"	f
custom	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn custom<T: Display>(msg: T) -> Self {$/;"	f
custom	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn custom<T: Display>(msg: T) -> Self;$/;"	f
custom	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn custom<T: Display>(msg: T) -> Error {$/;"	f
cycle_to_yo	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn cycle_to_yo(cycle: u32) -> (u32, u32) {$/;"	f
date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn date(&self) -> Date<Tz> {$/;"	f
date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub mod date;$/;"	m
date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub mod date;$/;"	m
date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn date(&self) -> NaiveDate {$/;"	f
datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub mod datetime;$/;"	m
datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub mod datetime;$/;"	m
datetime_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn datetime_from_str(&self, s: &str, fmt: &str) -> ParseResult<DateTime<Self>> {$/;"	f
datetime_to_timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^fn datetime_to_timespec(d: &NaiveDateTime, local: bool) -> oldtime::Timespec {$/;"	f
day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn day(&self) -> u32;$/;"	f
day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn day(&self) -> u32 {$/;"	f
day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn day(&self) -> u32 {$/;"	f
day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn day(&self) -> u32 {$/;"	f
day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn day0(&self) -> u32;$/;"	f
day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn day0(&self) -> u32 {$/;"	f
day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn day0(&self) -> u32 {$/;"	f
days	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn days(days: i64) -> Duration {$/;"	f
days_in_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^fn days_in_year(year: i32) -> i32 {$/;"	f
de	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        impl<E> de::Deserializer for $name<E>$/;"	i
de	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^pub mod de;$/;"	m
de	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read> de::Deserializer for &'a mut Deserializer<R> {$/;"	i
de	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^pub mod de;$/;"	m
de::Deserialize for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl de::Deserialize for ByteBuf {$/;"	i
de::Deserialize for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl de::Deserialize for DateTime<FixedOffset> {$/;"	i
de::Deserialize for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl de::Deserialize for DateTime<Local> {$/;"	i
de::Deserialize for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl de::Deserialize for DateTime<UTC> {$/;"	i
de::Deserialize for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl de::Deserialize for Map<String, Value> {$/;"	i
de::Deserialize for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl de::Deserialize for NaiveDate {$/;"	i
de::Deserialize for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    impl de::Deserialize for NaiveDateTime {$/;"	i
de::Deserialize for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    impl de::Deserialize for NaiveTime {$/;"	i
de::Deserialize for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::Deserialize for Value {$/;"	i
de::Deserializer for ByteBufDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<E> de::Deserializer for ByteBufDeserializer<E>$/;"	i
de::Deserializer for BytesDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> de::Deserializer for BytesDeserializer<'a, E>$/;"	i
de::Deserializer for CowStrDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> de::Deserializer for CowStrDeserializer<'a, E>$/;"	i
de::Deserializer for MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, E> de::Deserializer for MapDeserializer<I, E>$/;"	i
de::Deserializer for MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::Deserializer for MapDeserializer {$/;"	i
de::Deserializer for MapVisitorDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<V_, E> de::Deserializer for MapVisitorDeserializer<V_, E>$/;"	i
de::Deserializer for PairDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<A, B, E> de::Deserializer for PairDeserializer<A, B, E>$/;"	i
de::Deserializer for SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, T, E> de::Deserializer for SeqDeserializer<I, E>$/;"	i
de::Deserializer for SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::Deserializer for SeqDeserializer {$/;"	i
de::Deserializer for SeqVisitorDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<V_, E> de::Deserializer for SeqVisitorDeserializer<V_, E>$/;"	i
de::Deserializer for StrDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> de::Deserializer for StrDeserializer<'a, E>$/;"	i
de::Deserializer for StringDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<E> de::Deserializer for StringDeserializer<E>$/;"	i
de::Deserializer for UnitDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<E> de::Deserializer for UnitDeserializer<E>$/;"	i
de::Deserializer for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::Deserializer for Value {$/;"	i
de::EnumVisitor for CowStrDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> de::EnumVisitor for CowStrDeserializer<'a, E>$/;"	i
de::EnumVisitor for EnumDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::EnumVisitor for EnumDeserializer {$/;"	i
de::EnumVisitor for StrDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> de::EnumVisitor for StrDeserializer<'a, E>$/;"	i
de::EnumVisitor for StringDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<'a, E> de::EnumVisitor for StringDeserializer<E>$/;"	i
de::EnumVisitor for UnitVariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> de::EnumVisitor for UnitVariantVisitor<'a, R> {$/;"	i
de::EnumVisitor for VariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> de::EnumVisitor for VariantVisitor<'a, R> {$/;"	i
de::Error for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl de::Error for Error {$/;"	i
de::Error for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl de::Error for Error {$/;"	i
de::MapVisitor for MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, E> de::MapVisitor for MapDeserializer<I, E>$/;"	i
de::MapVisitor for MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::MapVisitor for MapDeserializer {$/;"	i
de::MapVisitor for MapVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> de::MapVisitor for MapVisitor<'a, R> {$/;"	i
de::SeqVisitor for MapDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, E> de::SeqVisitor for MapDeserializer<I, E>$/;"	i
de::SeqVisitor for PairVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<A, B, E> de::SeqVisitor for PairVisitor<A, B, E>$/;"	i
de::SeqVisitor for SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl<I, T, E> de::SeqVisitor for SeqDeserializer<I, E>$/;"	i
de::SeqVisitor for SeqDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::SeqVisitor for SeqDeserializer {$/;"	i
de::SeqVisitor for SeqVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> de::SeqVisitor for SeqVisitor<'a, R> {$/;"	i
de::VariantVisitor for UnitOnly	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    impl<E> de::VariantVisitor for UnitOnly<E>$/;"	i
de::VariantVisitor for UnitVariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> de::VariantVisitor for UnitVariantVisitor<'a, R> {$/;"	i
de::VariantVisitor for VariantDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl de::VariantVisitor for VariantDeserializer {$/;"	i
de::VariantVisitor for VariantVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^impl<'a, R: Read + 'a> de::VariantVisitor for VariantVisitor<'a, R> {$/;"	i
de::Visitor for ByteBufVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl de::Visitor for ByteBufVisitor {$/;"	i
de::Visitor for DateTimeVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl de::Visitor for DateTimeVisitor {$/;"	i
de::Visitor for NaiveDateTimeVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    impl de::Visitor for NaiveDateTimeVisitor {$/;"	i
de::Visitor for NaiveDateVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl de::Visitor for NaiveDateVisitor {$/;"	i
de::Visitor for NaiveTimeVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    impl de::Visitor for NaiveTimeVisitor {$/;"	i
de::Visitor for ValueVisitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^        impl de::Visitor for ValueVisitor {$/;"	i
de::Visitor for Visitor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^        impl de::Visitor for Visitor {$/;"	i
de::value::ValueDeserializer for ContentDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<E> de::value::ValueDeserializer<E> for ContentDeserializer<E>$/;"	i
de::value::ValueDeserializer for ContentRefDeserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^impl<'a, E> de::value::ValueDeserializer<E> for ContentRefDeserializer<'a, E>$/;"	i
debug	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! debug($/;"	d
decode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn decode<D: Decoder>(d: &mut D) -> Result<DateTime<FixedOffset>, D::Error> {$/;"	f
decode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn decode<D: Decoder>(d: &mut D) -> Result<DateTime<Local>, D::Error> {$/;"	f
decode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn decode<D: Decoder>(d: &mut D) -> Result<DateTime<UTC>, D::Error> {$/;"	f
decode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn decode<D: Decoder>(d: &mut D) -> Result<NaiveDate, D::Error> {$/;"	f
decode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn decode<D: Decoder>(d: &mut D) -> Result<NaiveDateTime, D::Error> {$/;"	f
decode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        fn decode<D: Decoder>(d: &mut D) -> Result<NaiveTime, D::Error> {$/;"	f
decode_hex_escape	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^fn decode_hex_escape<R: Read>(read: &mut R) -> Result<u16> {$/;"	f
default	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn default() -> Parsed {$/;"	f
default	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn default() -> Self {$/;"	f
default	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn default() -> Self {$/;"	f
default	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn default() -> Value {$/;"	f
default	/home/dpc/lab/rust/slog/json/lib.rs	/^    pub fn default(io: W) -> Json<W> {$/;"	f
default	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    pub fn default(io: W) -> Json<W> {$/;"	f
delegate_iterator	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^macro_rules! delegate_iterator {$/;"	d
deref	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn deref(&self) -> &[u8] { &self.bytes[..] }$/;"	f
deref	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn deref(&self) -> &[u8] { self.bytes }$/;"	f
deref_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn deref_mut(&mut self) -> &mut [u8] { &mut self.bytes[..] }$/;"	f
description	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    fn description(&self) -> &str {$/;"	f
description	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn description(&self) -> &str {$/;"	f
description	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/error.rs	/^    fn description(&self) -> &str;$/;"	f
description	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn description(&self) -> &str {$/;"	f
description	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn description(&self) -> &str {$/;"	f
description	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn description(&self) -> &str {$/;"	f
description	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn description(&self) -> &str {$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn deserialize<D>(deserializer: D) -> Result<ByteBuf, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn deserialize<D: Deserializer>(deserializer: D) -> Result<Self, D::Error> {$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn deserialize<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                fn deserialize<D>(deserializer: D) -> Result<($($name,)+), D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                fn deserialize<D>(deserializer: D) -> Result<[T; $len], D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn deserialize<D>(deserializer: D) -> Result<$ty, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn deserialize<D>(deserializer: D) -> Result<Field, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<(), D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Arc<T>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Box<T>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Box<[T]>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Cow<'a, T>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<IgnoredAny, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<NonZero<T>, D::Error> where D: Deserializer {$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Option<T>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<PhantomData<T>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Rc<T>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Result<T, E>, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<String, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<[T; 0], D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<bool, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<char, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn deserialize<D>(deserializer: D) -> Result<path::PathBuf, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize<D>(self, deserializer: D) -> Result<T, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/private.rs	/^        fn deserialize<V>(self, _visitor: V) -> Result<V::Value, E>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^            fn deserialize<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize<V: de::Visitor>(self, visitor: V) -> Result<V::Value, Self::Error> {$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize<V>(mut self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize<V_>(mut self, visitor: V_) -> Result<V_::Value, Self::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn deserialize<V>(self, visitor: V) -> Result<V::Value>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Number, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    fn deserialize<V>(self, visitor: V) -> Result<V::Value, Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn deserialize<D>(deserializer: D) -> Result<Value, D::Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn deserialize<V>(mut self, visitor: V) -> Result<V::Value, Error>$/;"	f
deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn deserialize<V>(self, visitor: V) -> Result<V::Value, Error>$/;"	f
deserialize_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_byte_buf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_byte_buf<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_bytes<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_char<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_enum<V>(self,$/;"	f
deserialize_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize_enum<V>(self,$/;"	f
deserialize_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn deserialize_enum<V>($/;"	f
deserialize_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn deserialize_enum<V>($/;"	f
deserialize_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_f32<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_f64<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_i16<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_i32<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_i64<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_ignored_any	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_ignored_any<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_map<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn deserialize_newtype_struct<V>(self, _name: &str, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_newtype_struct<V>(self,$/;"	f
deserialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn deserialize_newtype_struct<V>($/;"	f
deserialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn deserialize_newtype_struct<V>($/;"	f
deserialize_option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/private.rs	/^        fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, E>$/;"	f
deserialize_option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize_option<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn deserialize_option<V>(self, visitor: V) -> Result<V::Value>$/;"	f
deserialize_option	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn deserialize_option<V>($/;"	f
deserialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize_seq<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize_seq<V_>(mut self, visitor: V_) -> Result<V_::Value, Self::Error>$/;"	f
deserialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_seq_fixed_size<V>(self,$/;"	f
deserialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize_seq_fixed_size<V>(self, len: usize, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn deserialize_seq_fixed_size<V_>(self, _len: usize, visitor: V_) -> Result<V_::Value, Self::Error>$/;"	f
deserialize_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_str<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_string<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_struct<V>(self,$/;"	f
deserialize_struct_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_struct_field<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_tuple<V>(self, len: usize, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_tuple_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_tuple_struct<V>(self,$/;"	f
deserialize_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_u16<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_u32<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_u64<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_u8<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_unit<V>(self, visitor: V) -> Result<V::Value, Self::Error>$/;"	f
deserialize_unit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn deserialize_unit_struct<V>(self,$/;"	f
digits	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^    fn digits(s: &str) -> ParseResult<(u8, u8)> {$/;"	f
discard	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn discard(&mut self) {$/;"	f
discard	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn discard(&mut self);$/;"	f
display	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^mod display;$/;"	m
div	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^mod div;$/;"	m
div	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn div(self, rhs: i32) -> Duration {$/;"	f
div_floor_64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^fn div_floor_64(this: i64, other: i64) -> i64 {$/;"	f
div_mod_floor_64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^fn div_mod_floor_64(this: i64, other: i64) -> (i64, i64) {$/;"	f
div_rem_64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^fn div_rem_64(this: i64, other: i64) -> (i64, i64) {$/;"	f
drop	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn drop(&mut self) {$/;"	f
drop	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn drop(&mut self) {$/;"	f
duplicate	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub fn duplicate<D1: Drain, D2: Drain>(d1: D1, d2: D2) -> Duplicate<D1, D2> {$/;"	f
duplicate_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn duplicate_field(field: &'static str) -> Self {$/;"	f
duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^mod duration;$/;"	m
earliest	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn earliest(self) -> Option<T> {$/;"	f
east	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    pub fn east(secs: i32) -> FixedOffset {$/;"	f
east_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    pub fn east_opt(secs: i32) -> Option<FixedOffset> {$/;"	f
eat_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn eat_char(&mut self) {$/;"	f
emit_arguments	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn emit_arguments(&mut self, key: Key, val: &fmt::Arguments) -> Result {$/;"	f
emit_arguments	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn emit_arguments(&mut self, key: Key, val: &fmt::Arguments) -> Result;$/;"	f
emit_arguments	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_arguments(&mut self,$/;"	f
emit_arguments	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_arguments(&mut self,$/;"	f
emit_bool	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_bool(&mut self, key: &str, val: bool) -> slog::Result {$/;"	f
emit_bool	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_bool(&mut self, key: &str, val: bool) -> slog::Result {$/;"	f
emit_char	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_char(&mut self, key: &str, val: char) -> slog::Result {$/;"	f
emit_char	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_char(&mut self, key: &str, val: char) -> slog::Result {$/;"	f
emit_f32	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_f32(&mut self, key: &str, val: f32) -> slog::Result {$/;"	f
emit_f32	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_f32(&mut self, key: &str, val: f32) -> slog::Result {$/;"	f
emit_f64	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_f64(&mut self, key: &str, val: f64) -> slog::Result {$/;"	f
emit_f64	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_f64(&mut self, key: &str, val: f64) -> slog::Result {$/;"	f
emit_i16	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_i16(&mut self, key: &str, val: i16) -> slog::Result {$/;"	f
emit_i16	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_i16(&mut self, key: &str, val: i16) -> slog::Result {$/;"	f
emit_i32	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_i32(&mut self, key: &str, val: i32) -> slog::Result {$/;"	f
emit_i32	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_i32(&mut self, key: &str, val: i32) -> slog::Result {$/;"	f
emit_i64	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_i64(&mut self, key: &str, val: i64) -> slog::Result {$/;"	f
emit_i64	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_i64(&mut self, key: &str, val: i64) -> slog::Result {$/;"	f
emit_i8	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_i8(&mut self, key: &str, val: i8) -> slog::Result {$/;"	f
emit_i8	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_i8(&mut self, key: &str, val: i8) -> slog::Result {$/;"	f
emit_isize	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_isize(&mut self, key: &str, val: isize) -> slog::Result {$/;"	f
emit_isize	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_isize(&mut self, key: &str, val: isize) -> slog::Result {$/;"	f
emit_none	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn emit_none(&mut self, key: Key) -> Result {$/;"	f
emit_none	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_none(&mut self, key: &str) -> slog::Result {$/;"	f
emit_none	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_none(&mut self, key: &str) -> slog::Result {$/;"	f
emit_str	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_str(&mut self, key: &str, val: &str) -> slog::Result {$/;"	f
emit_str	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_str(&mut self, key: &str, val: &str) -> slog::Result {$/;"	f
emit_u16	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_u16(&mut self, key: &str, val: u16) -> slog::Result {$/;"	f
emit_u16	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_u16(&mut self, key: &str, val: u16) -> slog::Result {$/;"	f
emit_u32	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_u32(&mut self, key: &str, val: u32) -> slog::Result {$/;"	f
emit_u32	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_u32(&mut self, key: &str, val: u32) -> slog::Result {$/;"	f
emit_u64	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_u64(&mut self, key: &str, val: u64) -> slog::Result {$/;"	f
emit_u64	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_u64(&mut self, key: &str, val: u64) -> slog::Result {$/;"	f
emit_u8	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_u8(&mut self, key: &str, val: u8) -> slog::Result {$/;"	f
emit_u8	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_u8(&mut self, key: &str, val: u8) -> slog::Result {$/;"	f
emit_unit	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn emit_unit(&mut self, key: Key) -> Result {$/;"	f
emit_unit	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_unit(&mut self, key: &str) -> slog::Result {$/;"	f
emit_unit	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_unit(&mut self, key: &str) -> slog::Result {$/;"	f
emit_usize	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn emit_usize(&mut self, key: &str, val: usize) -> slog::Result {$/;"	f
emit_usize	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn emit_usize(&mut self, key: &str, val: usize) -> slog::Result {$/;"	f
empty_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn empty_tm() -> Tm {$/;"	f
encode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {$/;"	f
encode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {$/;"	f
encode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {$/;"	f
encode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {$/;"	f
encode_utf8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/utils.rs	/^pub fn encode_utf8(c: char) -> EncodeUtf8 {$/;"	f
end	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    pub fn end(mut self) -> Result<(), E> {$/;"	f
end	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    fn end(self) -> Result<Ok, E> {$/;"	f
end	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn end(self) -> Result<Self::Ok, Self::Error>;$/;"	f
end	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    pub fn end(&mut self) -> Result<()> {$/;"	f
end	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end(self) -> Result<()> {$/;"	f
end	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn end(self) -> Result<Value, Error> {$/;"	f
end	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn end(self) -> std::result::Result<S::Ok, S::Error> {$/;"	f
end	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn end(self) -> std::result::Result<S::Ok, S::Error> {$/;"	f
end_array	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end_array<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
end_array_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end_array_value<W: ?Sized>(&mut self, _writer: &mut W) -> Result<()>$/;"	f
end_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn end_map(&mut self) -> Result<()> {$/;"	f
end_object	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end_object<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
end_object_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end_object_key<W: ?Sized>(&mut self, _writer: &mut W) -> Result<()>$/;"	f
end_object_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end_object_value<W: ?Sized>(&mut self, _writer: &mut W) -> Result<()>$/;"	f
end_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn end_seq(&mut self) -> Result<()> {$/;"	f
end_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn end_string<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn eq(&self, other: &Date<Tz2>) -> bool { self.date == other.date }$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn eq(&self, other: &DateTime<Tz2>) -> bool { self.datetime == other.datetime }$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    fn eq(&self, _other: &InternalFixed) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    fn eq(&self, _other: &InternalNumeric) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn eq(&self, other: &Self) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^                fn eq(&self, other: &$ty) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^                fn eq(&self, other: &Value) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn eq(&self, other: &&str) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn eq(&self, other: &String) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn eq(&self, other: &Value) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn eq(&self, other: &str) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn eq(&self, other: &SteadyTime) -> bool {$/;"	f
eq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn eq(&self, other: &SteadyTime) -> bool {$/;"	f
equals	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^fn equals(s: &str, pattern: &str) -> bool {$/;"	f
error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^pub mod error;$/;"	m
error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn error(&mut self, reason: ErrorCode) -> Error {$/;"	f
error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^pub mod error;$/;"	m
error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^fn error<R: Read, T>(read: &R, reason: ErrorCode) -> Result<T> {$/;"	f
error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! error($/;"	d
error::Error for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^impl error::Error for Error {$/;"	i
error::Error for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl error::Error for Error {$/;"	i
escape_bytestring	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^fn escape_bytestring<'a>(bytes: &'a [u8]) -> iter::FlatMap<slice::Iter<'a, u8>, char::EscapeDefault, fn(&u8) -> char::EscapeDefault> {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result $/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result $/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result $/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result $/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result;$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
expecting	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
export	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^pub mod export;$/;"	m
expressions	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^fn expressions() {$/;"	f
extend	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn extend<T>(&mut self, iter: T) where T: IntoIterator<Item=(String, Value)> {$/;"	f
f	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn f(b: &u8) -> char::EscapeDefault {$/;"	f
file	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn file(&self) -> &'static str {$/;"	f
file_time_as_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn file_time_as_u64(ft: &FILETIME) -> u64 {$/;"	f
file_time_to_nsec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn file_time_to_nsec(ft: &FILETIME) -> i32 {$/;"	f
file_time_to_unix_seconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn file_time_to_unix_seconds(ft: &FILETIME) -> i64 {$/;"	f
filter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub fn filter<D: Drain, F: 'static + Send + Sync + Fn(&Record) -> bool>$/;"	f
filterlevel_sanity	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^fn filterlevel_sanity() {$/;"	f
fix	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^macro_rules! fix  { ($x:ident) => (Item::Fixed(Fixed::$x)) }$/;"	d
fix	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn fix(&self) -> FixedOffset { *self }$/;"	f
fix	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn fix(&self) -> FixedOffset;$/;"	f
fix	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn fix(&self) -> FixedOffset { FixedOffset::east(0) }$/;"	f
fix_position	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    pub fn fix_position<F>(self, f: F) -> Self$/;"	f
fixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^pub mod fixed;$/;"	m
flags	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn flags(&self) -> YearFlags {$/;"	f
flush	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn flush(&mut self) -> io::Result<()> {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) }$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) }$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) }$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "UTC") }$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "Z") }$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^            fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result;$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> result::Result<(), fmt::Error> {$/;"	f
fmt	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn fmt(&self, fmt: &mut core::fmt::Formatter) -> std::fmt::Result {$/;"	f
fmt::Debug for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl fmt::Debug for ByteBuf {$/;"	i
fmt::Debug for Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> fmt::Debug for Bytes<'a> {$/;"	i
fmt::Debug for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> fmt::Debug for Date<Tz> {$/;"	i
fmt::Debug for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> fmt::Debug for DateTime<Tz> {$/;"	i
fmt::Debug for FixedOffset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl fmt::Debug for FixedOffset {$/;"	i
fmt::Debug for InternalFixed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl fmt::Debug for InternalFixed {$/;"	i
fmt::Debug for InternalNumeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl fmt::Debug for InternalNumeric {$/;"	i
fmt::Debug for Logger	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl fmt::Debug for Logger {$/;"	i
fmt::Debug for Mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl fmt::Debug for Mdf {$/;"	i
fmt::Debug for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl fmt::Debug for NaiveDate {$/;"	i
fmt::Debug for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl fmt::Debug for NaiveDateTime {$/;"	i
fmt::Debug for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl fmt::Debug for NaiveTime {$/;"	i
fmt::Debug for Of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl fmt::Debug for Of {$/;"	i
fmt::Debug for OwnedKVList	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl fmt::Debug for OwnedKVList {$/;"	i
fmt::Debug for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        impl fmt::Debug for SteadyTime {$/;"	i
fmt::Debug for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    impl fmt::Debug for SteadyTime {$/;"	i
fmt::Debug for UTC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^impl fmt::Debug for UTC {$/;"	i
fmt::Debug for YearFlags	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl fmt::Debug for YearFlags {$/;"	i
fmt::Display for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> fmt::Display for Date<Tz> where Tz::Offset: fmt::Display {$/;"	i
fmt::Display for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> fmt::Display for DateTime<Tz> where Tz::Offset: fmt::Display {$/;"	i
fmt::Display for Duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl fmt::Display for Duration {$/;"	i
fmt::Display for FixedOffset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^impl fmt::Display for FixedOffset {$/;"	i
fmt::Display for Level	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl fmt::Display for Level {$/;"	i
fmt::Display for MutexDrainError	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl<D: Drain> fmt::Display for MutexDrainError<D>$/;"	i
fmt::Display for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl fmt::Display for NaiveDate {$/;"	i
fmt::Display for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl fmt::Display for NaiveDateTime {$/;"	i
fmt::Display for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl fmt::Display for NaiveTime {$/;"	i
fmt::Display for Number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^impl fmt::Display for Number {$/;"	i
fmt::Display for OutOfRangeError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^impl fmt::Display for OutOfRangeError {$/;"	i
fmt::Display for ParseError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^impl fmt::Display for ParseError {$/;"	i
fmt::Display for ParseError	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl fmt::Display for ParseError {$/;"	i
fmt::Display for SteadyTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^impl fmt::Display for SteadyTime {$/;"	i
fmt::Display for TmFmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^impl<'a> fmt::Display for TmFmt<'a> {$/;"	i
fmt::Display for Type	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<'a> fmt::Display for Type<'a> {$/;"	i
fmt::Display for UTC	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^impl fmt::Display for UTC {$/;"	i
fmt::Display for Unexpected	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^impl<'a> fmt::Display for Unexpected<'a> {$/;"	i
fmt::Display for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl fmt::Display for Value {$/;"	i
fmt_rfc2822_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    fn fmt_rfc2822_datetime(dt: DateTime<FixedOffset>) -> String {$/;"	f
fmt_rfc3339_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    fn fmt_rfc3339_datetime(dt: DateTime<FixedOffset>) -> String {$/;"	f
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> {$/;"	f
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> {$/;"	f
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub fn format<'a, I>(w: &mut fmt::Formatter, date: Option<&NaiveDate>, time: Option<&NaiveTime>,$/;"	f
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub mod format;$/;"	m
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> {$/;"	f
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> {$/;"	f
format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>> {$/;"	f
format_escaped_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^fn format_escaped_char<W: ?Sized, F: ?Sized>(wr: &mut W, formatter: &mut F, value: char) -> Result<()>$/;"	f
format_escaped_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^fn format_escaped_str<W: ?Sized, F: ?Sized>(writer: &mut W, formatter: &mut F, value: &str) -> Result<()>$/;"	f
format_with_items	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn format_with_items<'a, I>(&self, items: I) -> DelayedFormat<I>$/;"	f
format_with_items	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn format_with_items<'a, I>(&self, items: I) -> DelayedFormat<I>$/;"	f
format_with_items	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn format_with_items<'a, I>(&self, items: I) -> DelayedFormat<I>$/;"	f
format_with_items	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn format_with_items<'a, I>(&self, items: I) -> DelayedFormat<I>$/;"	f
format_with_items	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn format_with_items<'a, I>(&self, items: I) -> DelayedFormat<I>$/;"	f
forward_to_deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/macros.rs	/^macro_rules! forward_to_deserialize {$/;"	d
forward_to_deserialize_helper	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/macros.rs	/^macro_rules! forward_to_deserialize_helper {$/;"	d
forward_to_deserialize_method	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/macros.rs	/^macro_rules! forward_to_deserialize_method {$/;"	d
frequency	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn frequency() -> LARGE_INTEGER {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn from(bytes: Vec<u8>) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        pub fn from<T: Into<Vec<u8>>>(bytes: T) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn from(bytes: &'a Vec<u8>) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn from(bytes: &'a [u8]) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn from(error: ErrorImpl)  -> Error {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn from(error: de::value::Error) -> Error {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    fn from(error: io::Error) -> Error {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^                fn from(i: $signed_ty) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^                fn from(u: $unsigned_ty) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^                fn from(n: $ty) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn from(f: f32) -> Self {$/;"	f
from	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn from(f: f64) -> Self {$/;"	f
from	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn from(_ : std::sync::PoisonError<std::sync::MutexGuard<'a, D>>) -> MutexDrainError<D> {$/;"	f
from	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn from(_: core::fmt::Error) -> Error {$/;"	f
from	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn from(e: Error) -> std::io::Error {$/;"	f
from	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn from(err: std::io::Error) -> Error {$/;"	f
from	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn from(from: OwnedKV) -> Self {$/;"	f
from_escape_table	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn from_escape_table(escape: u8, byte: u8) -> CharEscape {$/;"	f
from_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_f32(n: f32) -> Option<Self> {$/;"	f
from_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_f64(n: f64) -> Option<Self> {$/;"	f
from_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn from_f64(f: f64) -> Option<Number> {$/;"	f
from_hms	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms(hour: u32, min: u32, sec: u32) -> NaiveTime {$/;"	f
from_hms_micro	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_micro(hour: u32, min: u32, sec: u32, micro: u32) -> NaiveTime {$/;"	f
from_hms_micro_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_micro_opt(hour: u32, min: u32, sec: u32, micro: u32) -> Option<NaiveTime> {$/;"	f
from_hms_milli	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_milli(hour: u32, min: u32, sec: u32, milli: u32) -> NaiveTime {$/;"	f
from_hms_milli_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_milli_opt(hour: u32, min: u32, sec: u32, milli: u32) -> Option<NaiveTime> {$/;"	f
from_hms_nano	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_nano(hour: u32, min: u32, sec: u32, nano: u32) -> NaiveTime {$/;"	f
from_hms_nano_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_nano_opt(hour: u32, min: u32, sec: u32, nano: u32) -> Option<NaiveTime> {$/;"	f
from_hms_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_hms_opt(hour: u32, min: u32, sec: u32) -> Option<NaiveTime> {$/;"	f
from_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_i16(n: i16) -> Option<Self> {$/;"	f
from_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_i32(n: i32) -> Option<Self> {$/;"	f
from_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn from_i64(n: i64) -> Option<Weekday> {$/;"	f
from_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_i64(n: i64) -> Option<Self>;$/;"	f
from_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_i8(n: i8) -> Option<Self> {$/;"	f
from_integer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^macro_rules! from_integer {$/;"	d
from_isize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_isize(n: isize) -> Option<Self> {$/;"	f
from_isoywd	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_isoywd(year: i32, week: u32, weekday: Weekday) -> NaiveDate {$/;"	f
from_isoywd_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_isoywd_opt(year: i32, week: u32, weekday: Weekday) -> Option<NaiveDate> {$/;"	f
from_iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    pub fn from_iter(iter: I) -> Self {$/;"	f
from_iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^pub fn from_iter<I, T>(iter: I) -> Result<T>$/;"	f
from_iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn from_iter<T>(iter: T) -> Self where T: IntoIterator<Item=(String, Value)> {$/;"	f
from_local_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn from_local_date(&self, local: &NaiveDate) -> LocalResult<Date<Local>> {$/;"	f
from_local_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn from_local_date(&self, local: &NaiveDate) -> LocalResult<Date<Self>> {$/;"	f
from_local_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn from_local_datetime(&self, local: &NaiveDateTime) -> LocalResult<DateTime<Local>> {$/;"	f
from_local_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn from_local_datetime(&self, local: &NaiveDateTime) -> LocalResult<DateTime<Self>> {$/;"	f
from_mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn from_mdf(Mdf(mdf): Mdf) -> Of {$/;"	f
from_mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn from_mdf(year: i32, mdf: Mdf) -> Option<NaiveDate> {$/;"	f
from_num_days_from_ce	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_num_days_from_ce(days: i32) -> NaiveDate {$/;"	f
from_num_days_from_ce_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_num_days_from_ce_opt(days: i32) -> Option<NaiveDate> {$/;"	f
from_num_seconds_from_midnight	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_num_seconds_from_midnight(secs: u32, nano: u32) -> NaiveTime {$/;"	f
from_num_seconds_from_midnight_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn from_num_seconds_from_midnight_opt(secs: u32, nano: u32) -> Option<NaiveTime> {$/;"	f
from_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn from_of(Of(of): Of) -> Mdf {$/;"	f
from_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn from_of(year: i32, of: Of) -> Option<NaiveDate> {$/;"	f
from_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn from_offset(offset: &FixedOffset) -> FixedOffset { *offset }$/;"	f
from_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn from_offset(_offset: &FixedOffset) -> Local { Local }$/;"	f
from_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn from_offset(offset: &Self::Offset) -> Self;$/;"	f
from_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn from_offset(_state: &UTC) -> UTC { UTC }$/;"	f
from_primitive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^mod from_primitive;$/;"	m
from_reader	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    pub fn from_reader(reader: R) -> Self {$/;"	f
from_reader	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^pub fn from_reader<R, T>(rdr: R) -> Result<T>$/;"	f
from_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^macro_rules! from_signed {$/;"	d
from_slice	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    pub fn from_slice(bytes: &'a [u8]) -> Self {$/;"	f
from_slice	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^pub fn from_slice<T>(v: &[u8]) -> Result<T>$/;"	f
from_std	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn from_std(duration: StdDuration) -> Result<Duration, OutOfRangeError> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn from_str(s: &str) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn from_str(s: &str) -> ParseResult<DateTime<Local>> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn from_str(s: &str) -> ParseResult<DateTime<UTC>> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn from_str(s: &str) -> ParseResult<NaiveDate> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn from_str(s: &str) -> ParseResult<NaiveDateTime> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn from_str(s: &str) -> ParseResult<NaiveTime> {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    pub fn from_str(s: &'a str) -> Self {$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^pub fn from_str<T>(s: &str) -> Result<T>$/;"	f
from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn from_str(s: &str) -> Result<Value, Error> {$/;"	f
from_str	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn from_str(level: &str) -> core::result::Result<FilterLevel, ()> {$/;"	f
from_timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn from_timestamp(secs: i64, nsecs: u32) -> NaiveDateTime {$/;"	f
from_timestamp_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn from_timestamp_opt(secs: i64, nsecs: u32) -> Option<NaiveDateTime> {$/;"	f
from_trait	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^fn from_trait<R, T>(read: R) -> Result<T>$/;"	f
from_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_u16(n: u16) -> Option<Self> {$/;"	f
from_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_u32(n: u32) -> Option<Self> {$/;"	f
from_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn from_u64(n: u64) -> Option<Weekday> {$/;"	f
from_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_u64(n: u64) -> Option<Self>;$/;"	f
from_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_u8(n: u8) -> Option<Self> {$/;"	f
from_unsigned	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^macro_rules! from_unsigned {$/;"	d
from_usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn from_usize(n: usize) -> Option<Self> {$/;"	f
from_usize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn from_usize(u: usize) -> Option<FilterLevel> {$/;"	f
from_usize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn from_usize(u: usize) -> Option<Level> {$/;"	f
from_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn from_utc(date: NaiveDate, offset: Tz::Offset) -> Date<Tz> {$/;"	f
from_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn from_utc(datetime: NaiveDateTime, offset: Tz::Offset) -> DateTime<Tz> {$/;"	f
from_utc_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn from_utc_date(&self, utc: &NaiveDate) -> Date<Local> {$/;"	f
from_utc_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn from_utc_date(&self, utc: &NaiveDate) -> Date<Self> {$/;"	f
from_utc_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn from_utc_datetime(&self, utc: &NaiveDateTime) -> DateTime<Local> {$/;"	f
from_utc_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn from_utc_datetime(&self, utc: &NaiveDateTime) -> DateTime<Self> {$/;"	f
from_utf8_lossy	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/export.rs	/^pub fn from_utf8_lossy(bytes: &[u8]) -> &str {$/;"	f
from_utf8_lossy	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/export.rs	/^pub fn from_utf8_lossy(bytes: &[u8]) -> Cow<str> {$/;"	f
from_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub fn from_value<T>(value: Value) -> Result<T, Error>$/;"	f
from_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn from_year(year: i32) -> YearFlags {$/;"	f
from_year_mod_400	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn from_year_mod_400(year: i32) -> YearFlags {$/;"	f
from_ymd	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_ymd(year: i32, month: u32, day: u32) -> NaiveDate {$/;"	f
from_ymd_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_ymd_opt(year: i32, month: u32, day: u32) -> Option<NaiveDate> {$/;"	f
from_yo	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_yo(year: i32, ordinal: u32) -> NaiveDate {$/;"	f
from_yo_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn from_yo_opt(year: i32, ordinal: u32) -> Option<NaiveDate> {$/;"	f
function	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn function(&self) -> &'static str {$/;"	f
fuse	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn fuse(self) -> Fuse<Self>$/;"	f
get	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn get<Q: ?Sized>(&self, key: &Q) -> Option<&Value>$/;"	f
get	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn get<I: Index>(&self, index: I) -> Option<&Value> {$/;"	f
get_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn get_mut(&mut self) -> &mut Iter { &mut self.iter }$/;"	f
get_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn get_mut<Q: ?Sized>(&mut self, key: &Q) -> Option<&mut Value>$/;"	f
get_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn get_mut<I: Index>(&mut self, index: I) -> Option<&mut Value> {$/;"	f
get_precise_ns	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        pub fn get_precise_ns() -> u64 {$/;"	f
get_precise_ns	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn get_precise_ns() -> u64 {$/;"	f
get_ref	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn get_ref(&self) -> &Iter { &self.iter }$/;"	f
get_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn get_time() -> Timespec {$/;"	f
get_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        pub fn get_time() -> (i64, i32) {$/;"	f
get_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn get_time() -> (i64, i32) {$/;"	f
hash	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn hash<H: hash::Hasher>(&self, state: &mut H) { self.date.hash(state) }$/;"	f
hash	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn hash<H: hash::Hasher>(&self, state: &mut H) { self.datetime.hash(state) }$/;"	f
hash	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn hash<H: hash::Hasher>(&self, state: &mut H) {$/;"	f
hash	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn hash<H: hash::Hasher>(&self, state: &mut H) {$/;"	f
hash	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn hash<H: hash::Hasher>(&self, state: &mut H) {$/;"	f
hash::Hash for Date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^impl<Tz: TimeZone> hash::Hash for Date<Tz> {$/;"	i
hash::Hash for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl<Tz: TimeZone> hash::Hash for DateTime<Tz> {$/;"	i
hash::Hash for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl hash::Hash for NaiveDate {$/;"	i
hash::Hash for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl hash::Hash for NaiveDateTime {$/;"	i
hash::Hash for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl hash::Hash for NaiveTime {$/;"	i
hms	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn hms(&self) -> (u32, u32, u32) {$/;"	f
hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn hour(&self) -> u32;$/;"	f
hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn hour(&self) -> u32 {$/;"	f
hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn hour(&self) -> u32 {$/;"	f
hour12	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn hour12(&self) -> (bool, u32) {$/;"	f
hours	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn hours(hours: i64) -> Duration {$/;"	f
ignore_res	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn ignore_res(self) -> IgnoreResult<Self> {$/;"	f
impl_default_as_fmt	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! impl_default_as_fmt{$/;"	d
impl_deserialize_num	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^macro_rules! impl_deserialize_num {$/;"	d
impl_deserialize_num_method	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^macro_rules! impl_deserialize_num_method {$/;"	d
impl_from_primitive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_from_primitive {$/;"	d
impl_m	/home/dpc/lab/rust/slog/json/lib.rs	/^macro_rules! impl_m($/;"	d
impl_m	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^macro_rules! impl_m($/;"	d
impl_to_primitive_float	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_float {$/;"	d
impl_to_primitive_float_to_float	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_float_to_float {$/;"	d
impl_to_primitive_int	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_int {$/;"	d
impl_to_primitive_int_to_int	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_int_to_int {$/;"	d
impl_to_primitive_int_to_uint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_int_to_uint {$/;"	d
impl_to_primitive_uint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_uint {$/;"	d
impl_to_primitive_uint_to_int	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_uint_to_int {$/;"	d
impl_to_primitive_uint_to_uint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^macro_rules! impl_to_primitive_uint_to_uint {$/;"	d
impl_value_for	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! impl_value_for{$/;"	d
impl_visit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^macro_rules! impl_visit {$/;"	d
impls	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub mod impls;$/;"	m
impls	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^mod impls;$/;"	m
impossible	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^mod impossible;$/;"	m
indent	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^fn indent<W: ?Sized>(wr: &mut W, n: usize, s: &[u8]) -> Result<()>$/;"	f
index	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn index(&self, index: &Q) -> &Value {$/;"	f
index	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index(&self, index: I) -> &Value {$/;"	f
index_into	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value> {$/;"	f
index_into	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_into<'v>(&self, v: &'v Value) -> Option<&'v Value>;$/;"	f
index_into_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value> {$/;"	f
index_into_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_into_mut<'v>(&self, v: &'v mut Value) -> Option<&'v mut Value>;$/;"	f
index_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn index_mut(&mut self, index: &Q) -> &mut Value {$/;"	f
index_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_mut(&mut self, index: I) -> &mut Value {$/;"	f
index_or_insert	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value {$/;"	f
index_or_insert	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn index_or_insert<'v>(&self, v: &'v mut Value) -> &'v mut Value;$/;"	f
info	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn info() -> &'static mach_timebase_info {$/;"	f
info	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! info($/;"	d
inner	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^mod inner {$/;"	m
insert	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn insert(&mut self, k: String, v: Value) -> Option<Value> {$/;"	f
internals	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^mod internals {$/;"	m
into	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn into(self) -> Vec<u8> {$/;"	f
into	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn into(self) -> &'a [u8] {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn into_deserializer(self) -> Self {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^            fn into_deserializer(self) -> $name<E> {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> BytesDeserializer<'a, E> {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> CowStrDeserializer<'a, E> {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> Self::Deserializer {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> Self::Deserializer;$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> StrDeserializer<'a, E> {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> StringDeserializer<E> {$/;"	f
into_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn into_deserializer(self) -> UnitDeserializer<E> {$/;"	f
into_inner	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn into_inner(self) -> Iter { self.iter }$/;"	f
into_inner	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    pub fn into_inner(self) -> W {$/;"	f
into_iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    pub fn into_iter<T>(self) -> StreamDeserializer<R, T>$/;"	f
into_iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn into_iter(self) -> Self::IntoIter {$/;"	f
invalid_length	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn invalid_length(len: usize, exp: &Expected) -> Self {$/;"	f
invalid_type	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn invalid_type(unexp: Unexpected, exp: &Expected) -> Self {$/;"	f
invalid_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn invalid_value(unexp: Unexpected, exp: &Expected) -> Self {$/;"	f
io::Write for WriterFormatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<'a, 'b> io::Write for WriterFormatter<'a, 'b> {$/;"	i
io_error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^        fn io_error<E>(_: E) -> io::Error {$/;"	f
is_array	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_array(&self) -> bool {$/;"	f
is_at_least	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn is_at_least(&self, level: Self) -> bool {$/;"	f
is_boolean	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_boolean(&self) -> bool {$/;"	f
is_empty	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn is_empty(&self) -> bool {$/;"	f
is_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn is_f64(&self) -> bool {$/;"	f
is_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_f64(&self) -> bool {$/;"	f
is_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn is_i64(&self) -> bool {$/;"	f
is_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_i64(&self) -> bool {$/;"	f
is_leap_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^fn is_leap_year(year: i32) -> bool {$/;"	f
is_null	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_null(&self) -> bool {$/;"	f
is_number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_number(&self) -> bool {$/;"	f
is_object	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_object(&self) -> bool {$/;"	f
is_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_string(&self) -> bool {$/;"	f
is_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    pub fn is_u64(&self) -> bool {$/;"	f
is_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn is_u64(&self) -> bool {$/;"	f
is_zero	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn is_zero(&self) -> bool {$/;"	f
iso_week	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^fn iso_week(fmt: &mut fmt::Formatter, ch:char, tm: &Tm) -> fmt::Result {$/;"	f
iso_week_days	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^fn iso_week_days(yday: i32, wday: i32) -> i32 {$/;"	f
isoweek_delta	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn isoweek_delta(&self) -> u32 {$/;"	f
isoweekdate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn isoweekdate(&self) -> (i32, u32, Weekday);$/;"	f
isoweekdate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn isoweekdate(&self) -> (i32, u32, Weekday) {$/;"	f
isoweekdate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn isoweekdate(&self) -> (i32, u32, Weekday) {$/;"	f
isoweekdate_raw	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn isoweekdate_raw(&self) -> (u32, Weekday) {$/;"	f
isoywd	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn isoywd(&self, year: i32, week: u32, weekday: Weekday) -> Date<Self> {$/;"	f
isoywd_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn isoywd_opt(&self, year: i32, week: u32, weekday: Weekday) -> LocalResult<Date<Self>> {$/;"	f
iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^pub mod iter;$/;"	m
iter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn iter(&self) -> MapIter {$/;"	f
iter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn iter(&self) -> BorrowedKVIterator<'a> {$/;"	f
iter_groups	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn iter_groups(&self) -> OwnedKVListGroupIterator {$/;"	f
iter_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn iter_mut(&mut self) -> MapIterMut {$/;"	f
iter_single	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn iter_single(&self) -> OwnedKVListIterator {$/;"	f
iterator_len_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^fn iterator_len_hint<I: Iterator>(iter: &I) -> Option<usize> {$/;"	f
json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/macros.rs	/^macro_rules! json {$/;"	d
json_internal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/macros.rs	/^macro_rules! json_internal {$/;"	d
key_must_be_a_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^fn key_must_be_a_string() -> Error {$/;"	f
keys	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn keys(&self) -> MapKeys {$/;"	f
kv	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn kv(&self) -> BorrowedKV {$/;"	f
latest	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn latest(self) -> Option<T> {$/;"	f
len	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn len(&self) -> usize {$/;"	f
len	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn len(&self) -> usize {$/;"	f
len_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn len_hint(&self) -> Option<usize> {$/;"	f
len_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn len_hint(&self) -> Option<usize>;$/;"	f
level	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn level(&self) -> Level {$/;"	f
level_at_least	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^fn level_at_least() {$/;"	f
level_filter	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub fn level_filter<D: Drain>(level: Level, d: D) -> LevelFilter<D> {$/;"	f
level_from_str	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^fn level_from_str() {$/;"	f
line	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn line(&self) -> usize { self.line }$/;"	f
line	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn line(&self) -> u32 {$/;"	f
list	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn list(&self) -> &OwnedKVList {$/;"	f
lit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^macro_rules! lit  { ($x:expr) => (Item::Literal($x)) }$/;"	d
local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^pub mod local;$/;"	m
local_minus_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    pub fn local_minus_utc(&self) -> i32 {$/;"	f
local_tm_to_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn local_tm_to_time(rust_tm: &Tm) -> i64 {$/;"	f
local_tm_to_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn local_tm_to_time(tm: &Tm) -> i64 {$/;"	f
location	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn location(&self) -> &'static RecordLocation {$/;"	f
log	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn log(&self, _: &Record, _: &OwnedKVList) -> result::Result<(), Never> {$/;"	f
log	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn log(&self,$/;"	f
log	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn log(&self, record: &Record) {$/;"	f
log	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! log($/;"	d
log	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^            fn log(&self,$/;"	f
log	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn log(&self,$/;"	f
log	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn log(&self,$/;"	f
logger_fmt_debug_sanity	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    fn logger_fmt_debug_sanity() {$/;"	f
mac	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    mod mac {$/;"	m
macros	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^mod macros;$/;"	m
macros	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^mod macros;$/;"	m
map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn map<U, F: FnMut(T) -> U>(self, mut f: F) -> LocalResult<U> {$/;"	f
map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^mod map;$/;"	m
map_err	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn map_err<F, E>(self, f: F) -> MapError<Self, E>$/;"	f
map_impl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^macro_rules! map_impl {$/;"	d
map_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^fn map_local<Tz: TimeZone, F>(d: &Date<Tz>, mut f: F) -> Option<Date<Tz>>$/;"	f
map_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^fn map_local<Tz: TimeZone, F>(dt: &DateTime<Tz>, mut f: F) -> Option<DateTime<Tz>>$/;"	f
match_digits	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn match_digits(ss: &mut &str, min_digits : usize, max_digits: usize, ws: bool) -> Option<i32> {$/;"	f
match_digits_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn match_digits_i64(ss: &mut &str, min_digits : usize, max_digits: usize, ws: bool) -> Option<i64> {$/;"	f
match_digits_in_range	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn match_digits_in_range(ss: &mut &str,$/;"	f
match_fractional_seconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn match_fractional_seconds(ss: &mut &str) -> i32 {$/;"	f
match_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn match_str(s: &mut &str, needle: &str) -> bool {$/;"	f
match_strs	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn match_strs(ss: &mut &str, strs: &[(&str, i32)]) -> Option<i32> {$/;"	f
max	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn max() -> Self {$/;"	f
max_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn max_value() -> $t { $max }$/;"	f
max_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn max_value() -> Self;$/;"	f
max_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn max_value() -> Duration { MAX }$/;"	f
mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn mdf(&self) -> Mdf {$/;"	f
microseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn microseconds(microseconds: i64) -> Duration {$/;"	f
milliseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn milliseconds(milliseconds: i64) -> Duration {$/;"	f
min	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn min() -> Self {$/;"	f
min_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn min_value() -> $t { $min }$/;"	f
min_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn min_value() -> Self;$/;"	f
min_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn min_value() -> Duration { MIN }$/;"	f
minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn minute(&self) -> u32;$/;"	f
minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn minute(&self) -> u32 {$/;"	f
minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn minute(&self) -> u32 {$/;"	f
minutes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn minutes(minutes: i64) -> Duration {$/;"	f
missing_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn missing_field(field: &'static str) -> Self {$/;"	f
missing_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/private.rs	/^pub fn missing_field<V, E>(field: &'static str) -> Result<V, E>$/;"	f
mod_floor_64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^fn mod_floor_64(this: i64, other: i64) -> i64 {$/;"	f
module	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn module(&self) -> &'static str {$/;"	f
month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn month(&self) -> u32;$/;"	f
month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn month(&self) -> u32 {$/;"	f
month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn month(&self) -> u32 {$/;"	f
month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn month(&self) -> u32 {$/;"	f
month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn month0(&self) -> u32;$/;"	f
month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn month0(&self) -> u32 {$/;"	f
month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn month0(&self) -> u32 {$/;"	f
msg	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn msg(&self) -> fmt::Arguments {$/;"	f
mul	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn mul(self, rhs: i32) -> Duration {$/;"	f
mul_div_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn mul_div_i64(value: i64, numer: i64, denom: i64) -> i64 {$/;"	f
multichain	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    fn multichain() {$/;"	f
mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        static mut LOCK: *mut Mutex<()> = 0 as *mut _;$/;"	c
mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            static mut INFO: mach_timebase_info = mach_timebase_info {$/;"	c
mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        static mut FREQUENCY: LARGE_INTEGER = 0;$/;"	c
naive	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub mod naive {$/;"	m
naive_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn naive_local(&self) -> NaiveDate {$/;"	f
naive_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn naive_local(&self) -> NaiveDateTime {$/;"	f
naive_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn naive_utc(&self) -> NaiveDate {$/;"	f
naive_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn naive_utc(&self) -> NaiveDateTime {$/;"	f
nanos_mod_sec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn nanos_mod_sec(&self) -> i32 {$/;"	f
nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn nanosecond(s: &str) -> ParseResult<(&str, i64)> {$/;"	f
nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn nanosecond(&self) -> u32;$/;"	f
nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn nanosecond(&self) -> u32 {$/;"	f
nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn nanosecond(&self) -> u32 {$/;"	f
nanoseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn nanoseconds(nanos: i64) -> Duration {$/;"	f
ndays	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn ndays(&self) -> u32 {$/;"	f
neg	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn neg(self) -> Duration {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    pub fn new(date: Option<NaiveDate>, time: Option<NaiveTime>, items: I) -> DelayedFormat<I> {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn new() -> Parsed {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^    pub fn new(s: &'a str) -> StrftimeItems<'a> {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn new(month: u32, day: u32, YearFlags(flags): YearFlags) -> Mdf {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn new(ordinal: u32, YearFlags(flags): YearFlags) -> Of {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn new(date: NaiveDate, time: NaiveTime) -> NaiveDateTime {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        pub fn new() -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    pub fn new(bytes: &'a [u8]) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn new(name: &'static str) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    pub fn new(content: &'a Content) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    pub fn new(content: Content) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    pub fn new(name: &'static str) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    pub fn new(type_name: &'a str, variant_name: &'a str) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                pub fn new() -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            pub fn new() -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    pub fn new() -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    pub fn new(iter: I) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    pub fn new(visitor: V_) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn new(iter: Iter) -> LineColIterator<Iter> {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn new(de: &'a mut Deserializer<R>) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn new(read: R) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn new() -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    pub fn new(iter: Iter) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    pub fn new(s: &'a str) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    pub fn new(slice: &'a [u8]) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    pub fn new() -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    pub fn new(writer: W) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn new(map: Map<String, Value>) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn new(vec: Vec<Value>) -> Self {$/;"	f
new	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn new(sec: i64, nsec: i32) -> Timespec {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn new(list: &'a OwnedKVList) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn new(values: OwnedKV, next_node: Arc<OwnedKVListNode>) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new(&self, values: OwnedKV) -> Logger {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new(drain1: D1, drain2: D2) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new(drain: D) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new(drain: D, level: Level) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new(s: &'a RecordStatic<'a>,$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new<F: 'static + Sync + Send + Fn(&Record) -> bool>(drain: D,$/;"	f
new	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn new<F: 'static + Sync + Send + Fn(<D as Drain>::Err) -> E>$/;"	f
new	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn new(io: W) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/lib.rs	/^    pub fn new(io: W) -> JsonBuilder<W> {$/;"	f
new	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn new(io: W) -> Self {$/;"	f
new	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    pub fn new(io: W) -> JsonBuilder<W> {$/;"	f
new_with_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^    pub fn new_with_offset<Off>(date: Option<NaiveDate>, time: Option<NaiveTime>,$/;"	f
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^                macro_rules! next {$/;"	d
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^    fn next(&mut self) -> Option<Item<'a>> {$/;"	f
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    fn next(&mut self) -> Option<io::Result<u8>> {$/;"	f
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn next(&mut self) -> Option<Result<T>> {$/;"	f
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn next(&mut self) -> Option<Self::Item> {$/;"	f
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn next(&mut self) -> io::Result<Option<u8>> {$/;"	f
next	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn next(&mut self) -> io::Result<Option<u8>>;$/;"	f
next	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn next(&mut self) -> Option<Self::Item> {$/;"	f
next_back	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn next_back(&mut self) -> Option<Self::Item> {$/;"	f
next_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn next_char(&mut self) -> Result<Option<u8>> {$/;"	f
next_char_or_null	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn next_char_or_null(&mut self) -> Result<u8> {$/;"	f
next_pair	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn next_pair(&mut self) -> Option<(<I::Item as private::Pair>::First, <I::Item as private::Pair>::Second)> {$/;"	f
nisoweeks	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn nisoweeks(&self) -> u32 {$/;"	f
no_imports	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^mod no_imports {$/;"	m
norm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn norm<Tz: TimeZone>(dt: &Option<DateTime<Tz>>) -> Option<(&DateTime<Tz>, &Tz::Offset)> {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    pub fn now() -> DateTime<Local> {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    pub fn now() -> DateTime<UTC> {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn now() -> PreciseTime {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn now() -> SteadyTime {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn now() -> Tm {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            pub fn now() -> SteadyTime {$/;"	f
now	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        pub fn now() -> SteadyTime {$/;"	f
now_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn now_utc() -> Tm {$/;"	f
num	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^macro_rules! num  { ($x:ident) => (Item::Numeric(Numeric::$x, Pad::None)) }$/;"	d
num0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^macro_rules! num0 { ($x:ident) => (Item::Numeric(Numeric::$x, Pad::Zero)) }$/;"	d
num::traits::FromPrimitive for Weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^impl num::traits::FromPrimitive for Weekday {$/;"	i
num_days	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_days(&self) -> i64 {$/;"	f
num_days_from_ce	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn num_days_from_ce(&self) -> i32 {$/;"	f
num_days_from_monday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub fn num_days_from_monday(&self) -> u32 {$/;"	f
num_days_from_sunday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub fn num_days_from_sunday(&self) -> u32 {$/;"	f
num_hours	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_hours(&self) -> i64 {$/;"	f
num_microseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_microseconds(&self) -> Option<i64> {$/;"	f
num_milliseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_milliseconds(&self) -> i64 {$/;"	f
num_minutes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_minutes(&self) -> i64 {$/;"	f
num_nanoseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_nanoseconds(&self) -> Option<i64> {$/;"	f
num_seconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_seconds(&self) -> i64 {$/;"	f
num_seconds_from_midnight	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn num_seconds_from_midnight(&self) -> u32 {$/;"	f
num_seconds_from_midnight	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn num_seconds_from_midnight(&self) -> u32 {$/;"	f
num_weeks	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn num_weeks(&self) -> i64 {$/;"	f
number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn number(s: &str, min: usize, max: usize) -> ParseResult<(&str, i64)> {$/;"	f
number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^mod number;$/;"	m
number_from_monday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub fn number_from_monday(&self) -> u32 {$/;"	f
number_from_sunday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub fn number_from_sunday(&self) -> u32 {$/;"	f
nums	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^macro_rules! nums { ($x:ident) => (Item::Numeric(Numeric::$x, Pad::Space)) }$/;"	d
o	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! o($/;"	d
of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn of(&self) -> Of {$/;"	f
offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn offset<'a>(&'a self) -> &'a Tz::Offset {$/;"	f
offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn offset<'a>(&'a self) -> &'a Tz::Offset {$/;"	f
offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub mod offset;$/;"	m
offset_from_local_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<FixedOffset> {$/;"	f
offset_from_local_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn offset_from_local_date(&self, local: &NaiveDate) -> LocalResult<FixedOffset> {$/;"	f
offset_from_local_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn offset_from_local_date(&self, local: &NaiveDate) -> LocalResult<Self::Offset>;$/;"	f
offset_from_local_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<UTC> {$/;"	f
offset_from_local_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn offset_from_local_datetime(&self, _local: &NaiveDateTime) -> LocalResult<FixedOffset> {$/;"	f
offset_from_local_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn offset_from_local_datetime(&self, local: &NaiveDateTime) -> LocalResult<FixedOffset> {$/;"	f
offset_from_local_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn offset_from_local_datetime(&self, local: &NaiveDateTime) -> LocalResult<Self::Offset>;$/;"	f
offset_from_local_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn offset_from_local_datetime(&self, _local: &NaiveDateTime) -> LocalResult<UTC> {$/;"	f
offset_from_utc_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn offset_from_utc_date(&self, _utc: &NaiveDate) -> FixedOffset { *self }$/;"	f
offset_from_utc_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn offset_from_utc_date(&self, utc: &NaiveDate) -> FixedOffset {$/;"	f
offset_from_utc_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn offset_from_utc_date(&self, utc: &NaiveDate) -> Self::Offset;$/;"	f
offset_from_utc_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn offset_from_utc_date(&self, _utc: &NaiveDate) -> UTC { UTC }$/;"	f
offset_from_utc_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> FixedOffset { *self }$/;"	f
offset_from_utc_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn offset_from_utc_datetime(&self, utc: &NaiveDateTime) -> FixedOffset {$/;"	f
offset_from_utc_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn offset_from_utc_datetime(&self, utc: &NaiveDateTime) -> Self::Offset;$/;"	f
offset_from_utc_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    fn offset_from_utc_datetime(&self, _utc: &NaiveDateTime) -> UTC { UTC}$/;"	f
ops::Deref for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl ops::Deref for ByteBuf {$/;"	i
ops::Deref for Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> ops::Deref for Bytes<'a> {$/;"	i
ops::DerefMut for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl ops::DerefMut for ByteBuf {$/;"	i
ops::Index for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl<'a, Q: ?Sized> ops::Index<&'a Q> for Map<String, Value>$/;"	i
ops::Index for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<I> ops::Index<I> for Value where I: Index {$/;"	i
ops::IndexMut for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl<'a, Q: ?Sized> ops::IndexMut<&'a Q> for Map<String, Value>$/;"	i
ops::IndexMut for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl<I> ops::IndexMut<I> for Value where I: Index {$/;"	i
ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn ordinal(&self) -> u32;$/;"	f
ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn ordinal(&self) -> u32 {$/;"	f
ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn ordinal(&self) -> u32 {$/;"	f
ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn ordinal(&self) -> u32 {$/;"	f
ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn ordinal0(&self) -> u32;$/;"	f
ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn ordinal0(&self) -> u32 {$/;"	f
ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn ordinal0(&self) -> u32 {$/;"	f
overflow	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^macro_rules! overflow {$/;"	d
overflowing_add_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn overflowing_add_signed(&self, mut rhs: OldDuration) -> (NaiveTime, i64) {$/;"	f
overflowing_sub_signed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn overflowing_sub_signed(&self, rhs: OldDuration) -> (NaiveTime, i64) {$/;"	f
parse	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^mod parse;$/;"	m
parse	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^pub fn parse<'a, I>(parsed: &mut Parsed, mut s: &str, items: I) -> ParseResult<()>$/;"	f
parse	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^        macro_rules! parse {$/;"	d
parse	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^mod parse;$/;"	m
parse_all	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    fn parse_all(s: &str, items: &[Item]) -> ParseResult<Parsed> {$/;"	f
parse_and_collect	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^    fn parse_and_collect<'a>(s: &'a str) -> Vec<Item<'a>> {$/;"	f
parse_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn parse_char(s: &mut &str, c: char) -> Result<(), ParseError> {$/;"	f
parse_decimal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_decimal<V>($/;"	f
parse_escape	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^fn parse_escape<R: Read>(read: &mut R, scratch: &mut Vec<u8>) -> Result<()> {$/;"	f
parse_exponent	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_exponent<V>($/;"	f
parse_exponent_overflow	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_exponent_overflow<V>($/;"	f
parse_from_rfc2822	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn parse_from_rfc2822(s: &str) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
parse_from_rfc3339	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn parse_from_rfc3339(s: &str) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<NaiveDate> {$/;"	f
parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<NaiveDateTime> {$/;"	f
parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn parse_from_str(s: &str, fmt: &str) -> ParseResult<NaiveTime> {$/;"	f
parse_ident	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_ident(&mut self, ident: &[u8]) -> Result<()> {$/;"	f
parse_index	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^fn parse_index(s: &str) -> Option<usize> {$/;"	f
parse_integer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_integer<V>(&mut self, pos: bool, visitor: V) -> Result<V::Value>$/;"	f
parse_long_integer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_long_integer<V>($/;"	f
parse_number	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_number<V>($/;"	f
parse_object_colon	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_object_colon(&mut self) -> Result<()> {$/;"	f
parse_rfc2822	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn parse_rfc2822<'a>(parsed: &mut Parsed, mut s: &'a str) -> ParseResult<(&'a str, ())> {$/;"	f
parse_rfc3339	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn parse_rfc3339<'a>(parsed: &mut Parsed, mut s: &'a str) -> ParseResult<(&'a str, ())> {$/;"	f
parse_rfc850	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn parse_rfc850() {$/;"	f
parse_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn parse_str<'s>($/;"	f
parse_str_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn parse_str_bytes<'s, T, F>($/;"	f
parse_type	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/display.rs	/^fn parse_type(fmt: &mut fmt::Formatter, ch: char, tm: &Tm) -> fmt::Result {$/;"	f
parse_type	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^fn parse_type(s: &mut &str, ch: char, tm: &mut Tm) -> Result<(), ParseError> {$/;"	f
parse_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_value<V>(&mut self, visitor: V) -> Result<V::Value>$/;"	f
parse_whitespace	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn parse_whitespace(&mut self) -> Result<bool> {$/;"	f
parsed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub mod parsed;$/;"	m
partial_cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn partial_cmp(&self, other: &Date<Tz>) -> Option<Ordering> {$/;"	f
partial_cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn partial_cmp(&self, other: &DateTime<Tz>) -> Option<Ordering> {$/;"	f
partial_cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn partial_cmp(&self, other: &Tm) -> Option<Ordering> {$/;"	f
partial_cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn partial_cmp(&self, other: &SteadyTime) -> Option<Ordering> {$/;"	f
partial_cmp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn partial_cmp(&self, other: &SteadyTime) -> Option<Ordering> {$/;"	f
partialeq_numeric	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^macro_rules! partialeq_numeric {$/;"	d
peek	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/iter.rs	/^    pub fn peek(&mut self) -> Option<&io::Result<u8>> { self.iter.peek() }$/;"	f
peek	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn peek(&mut self) -> Result<Option<u8>> {$/;"	f
peek	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn peek(&mut self) -> io::Result<Option<u8>> {$/;"	f
peek	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn peek(&mut self) -> io::Result<Option<u8>>;$/;"	f
peek_error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn peek_error(&mut self, reason: ErrorCode) -> Error {$/;"	f
peek_or_null	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn peek_or_null(&mut self) -> Result<u8> {$/;"	f
peek_position	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn peek_position(&self) -> Position {$/;"	f
peek_position	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn peek_position(&self) -> Position;$/;"	f
pointer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn pointer<'a>(&'a self, pointer: &str) -> Option<&'a Value> {$/;"	f
pointer_mut	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    pub fn pointer_mut<'a>(&'a mut self, pointer: &str) -> Option<&'a mut Value> {$/;"	f
position	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn position(&self) -> Position {$/;"	f
position	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn position(&self) -> Position;$/;"	f
position_of_index	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/read.rs	/^    fn position_of_index(&self, i: usize) -> Position {$/;"	f
precise_time_ns	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn precise_time_ns() -> u64 {$/;"	f
precise_time_s	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn precise_time_s() -> f64 {$/;"	f
pred	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn pred(&self) -> Date<Tz> {$/;"	f
pred	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub fn pred(&self) -> Weekday {$/;"	f
pred	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn pred(&self) -> Of {$/;"	f
pred	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn pred(&self) -> NaiveDate {$/;"	f
pred_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn pred_opt(&self) -> Option<Date<Tz>> {$/;"	f
pred_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn pred_opt(&self) -> Option<NaiveDate> {$/;"	f
prelude	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^pub mod prelude {$/;"	m
pretty	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    pub fn pretty(writer: W) -> Self {$/;"	f
primitive_deserializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^macro_rules! primitive_deserializer {$/;"	d
private	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub mod private;$/;"	m
private	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^mod private {$/;"	m
private	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^pub mod private;$/;"	m
private	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^mod private {$/;"	m
read	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^mod read;$/;"	m
recons	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^                macro_rules! recons {$/;"	d
record	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! record($/;"	d
record_static	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! record_static($/;"	d
remove	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn remove<Q: ?Sized>(&mut self, key: &Q) -> Option<Value>$/;"	f
resolve_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^        fn resolve_year(y: Option<i32>, q: Option<i32>,$/;"	f
rfc2822_to_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    fn rfc2822_to_datetime(date: &str) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
rfc3339	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn rfc3339<'a>(&'a self) -> TmFmt {$/;"	f
rfc3339_to_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    fn rfc3339_to_datetime(date: &str) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
rfc822	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn rfc822(&self) -> TmFmt {$/;"	f
rfc822z	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn rfc822z(&self) -> TmFmt {$/;"	f
root	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn root(values: OwnedKV) -> Self {$/;"	f
root	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn root<D>(d: D, values: OwnedKV) -> Logger$/;"	f
rust_tm_to_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn rust_tm_to_tm(rust_tm: &Tm, tm: &mut libc::tm) {$/;"	f
rustc_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^mod rustc_serialize {$/;"	m
rustc_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^mod rustc_serialize {$/;"	m
rustc_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^mod rustc_serialize {$/;"	m
rustc_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^mod rustc_serialize {$/;"	m
scan	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^mod scan;$/;"	m
second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn second(&self) -> u32;$/;"	f
second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn second(&self) -> u32 {$/;"	f
second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn second(&self) -> u32 {$/;"	f
seconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn seconds(seconds: i64) -> Duration {$/;"	f
seq_impl	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^macro_rules! seq_impl {$/;"	d
ser	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^pub mod ser;$/;"	m
ser	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^pub mod ser;$/;"	m
ser	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::Serializer for &'a mut Serializer<W, F>$/;"	i
ser	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^pub mod ser {$/;"	m
ser::Error for Error	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^impl ser::Error for Error {$/;"	i
ser::Serialize for ByteBuf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    impl ser::Serialize for ByteBuf {$/;"	i
ser::Serialize for Bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^impl<'a> ser::Serialize for Bytes<'a> {$/;"	i
ser::Serialize for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    impl<Tz: TimeZone> ser::Serialize for DateTime<Tz> {$/;"	i
ser::Serialize for Map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^impl ser::Serialize for Map<String, Value> {$/;"	i
ser::Serialize for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    impl ser::Serialize for NaiveDate {$/;"	i
ser::Serialize for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    impl ser::Serialize for NaiveDateTime {$/;"	i
ser::Serialize for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    impl ser::Serialize for NaiveTime {$/;"	i
ser::Serialize for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::Serialize for Value {$/;"	i
ser::SerializeMap for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeMap for Compound<'a, W, F>$/;"	i
ser::SerializeMap for SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeMap for SerializeMap {$/;"	i
ser::SerializeSeq for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeSeq for Compound<'a, W, F>$/;"	i
ser::SerializeSeq for SerializeVec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeSeq for SerializeVec {$/;"	i
ser::SerializeStruct for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeStruct for Compound<'a, W, F>$/;"	i
ser::SerializeStruct for SerializeMap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeStruct for SerializeMap {$/;"	i
ser::SerializeStructVariant for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeStructVariant for Compound<'a, W, F>$/;"	i
ser::SerializeStructVariant for SerializeStructVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeStructVariant for SerializeStructVariant {$/;"	i
ser::SerializeTuple for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeTuple for Compound<'a, W, F>$/;"	i
ser::SerializeTuple for SerializeVec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeTuple for SerializeVec {$/;"	i
ser::SerializeTupleStruct for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeTupleStruct for Compound<'a, W, F>$/;"	i
ser::SerializeTupleStruct for SerializeVec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeTupleStruct for SerializeVec {$/;"	i
ser::SerializeTupleVariant for Compound	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::SerializeTupleVariant for Compound<'a, W, F>$/;"	i
ser::SerializeTupleVariant for SerializeTupleVariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::SerializeTupleVariant for SerializeTupleVariant {$/;"	i
ser::Serializer for MapKeySerializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^impl<'a, W, F> ser::Serializer for MapKeySerializer<'a, W, F>$/;"	i
ser::Serializer for Serializer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl ser::Serializer for Serializer {$/;"	i
serde	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^mod serde {$/;"	m
serde	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^mod serde {$/;"	m
serde	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^mod serde {$/;"	m
serde	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^mod serde {$/;"	m
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^                fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^            fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^        fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>$/;"	f
serialize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^            fn serialize(&self, _record : &Record, key : Key, serializer : &mut Serializer)$/;"	f
serialize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn serialize(&self, record: &Record, key: Key, serializer: &mut Serializer)$/;"	f
serialize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn serialize(&self,$/;"	f
serialize	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn serialize<'b, S: 'b + Value>(mut self, s: S) -> Result {$/;"	f
serialize_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_bool(self, _: bool) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_bool(self, _value: bool) -> Result<()> {$/;"	f
serialize_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_bool(self, value: bool) -> Result<()> {$/;"	f
serialize_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_bool(self, value: bool) -> Result<Value, Error> {$/;"	f
serialize_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_bytes(self, value: &[u8]) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_bytes(self, _: &[u8]) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_bytes(self, _value: &[u8]) -> Result<()> {$/;"	f
serialize_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_bytes(self, value: &[u8]) -> Result<()> {$/;"	f
serialize_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_bytes(self, value: &[u8]) -> Result<Value, Error> {$/;"	f
serialize_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_char(self, v: char) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_char(self, _value: char) -> Result<()> {$/;"	f
serialize_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_char(self, value: char) -> Result<()> {$/;"	f
serialize_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_char(self, value: char) -> Result<Value, Error> {$/;"	f
serialize_element	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    fn serialize_element<T: ?Sized + Serialize>(&mut self,$/;"	f
serialize_element	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_element<T: ?Sized + Serialize>(&mut self, value: &T) -> Result<(), Self::Error>;$/;"	f
serialize_element	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_element<T: ?Sized>($/;"	f
serialize_element	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_element<T: ?Sized>(&mut self, value: &T) -> Result<(), Error>$/;"	f
serialize_entry	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_entry<K: ?Sized + Serialize, V: ?Sized + Serialize>($/;"	f
serialize_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_f32(self, v: f32) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_f32(self, _: f32) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_f32(self, _value: f32) -> Result<()> {$/;"	f
serialize_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_f32(self, value: f32) -> Result<()> {$/;"	f
serialize_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_f32(self, value: f32) -> Result<Value, Error> {$/;"	f
serialize_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_f64(self, v: f64) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_f64(self, _: f64) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_f64(self, _value: f64) -> Result<()> {$/;"	f
serialize_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_f64(self, value: f64) -> Result<()> {$/;"	f
serialize_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_f64(self, value: f64) -> Result<Value, Error> {$/;"	f
serialize_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    fn serialize_field<T: ?Sized + Serialize>(&mut self,$/;"	f
serialize_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_field<T: ?Sized + Serialize>(&mut self, key: &'static str, value: &T) -> Result<(), Self::Error>;$/;"	f
serialize_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_field<T: ?Sized + Serialize>(&mut self, value: &T) -> Result<(), Self::Error>;$/;"	f
serialize_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_field<T: ?Sized>($/;"	f
serialize_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_field<T: ?Sized>(&mut self, key: &'static str, value: &T) -> Result<(), Error>$/;"	f
serialize_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_field<T: ?Sized>(&mut self, value: &T) -> Result<(), Error>$/;"	f
serialize_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_i16(self, _: i16) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_i16(self, value: i16) -> Result<()> {$/;"	f
serialize_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_i16(self, value: i16) -> Result<Value, Error> {$/;"	f
serialize_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_i32(self, _: i32) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_i32(self, value: i32) -> Result<()> {$/;"	f
serialize_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_i32(self, value: i32) -> Result<Value, Error> {$/;"	f
serialize_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_i64(self, _: i64) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_i64(self, value: i64) -> Result<()> {$/;"	f
serialize_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_i64(self, value: i64) -> Result<Value, Error> {$/;"	f
serialize_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_i8(self, v: i8) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_i8(self, _: i8) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_i8(self, value: i8) -> Result<()> {$/;"	f
serialize_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_i8(self, value: i8) -> Result<Value, Error> {$/;"	f
serialize_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    fn serialize_key<T: ?Sized + Serialize>(&mut self,$/;"	f
serialize_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_key<T: ?Sized + Serialize>(&mut self, key: &T) -> Result<(), Self::Error>;$/;"	f
serialize_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_key<T: ?Sized>($/;"	f
serialize_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_key<T: ?Sized>(&mut self, key: &T) -> Result<(), Error>$/;"	f
serialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^macro_rules! serialize_map {$/;"	d
serialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_map($/;"	f
serialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap, Self::Error> {$/;"	f
serialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeMap> {$/;"	f
serialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap> {$/;"	f
serialize_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_map($/;"	f
serialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_newtype_struct<T: ?Sized + Serialize>($/;"	f
serialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_newtype_struct<T: ?Sized>(self, _: &'static str, value: &T) -> Result<Self::Ok, Self::Error>$/;"	f
serialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_newtype_struct<T: ?Sized>($/;"	f
serialize_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_newtype_struct<T: ?Sized>($/;"	f
serialize_newtype_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_newtype_variant<T: ?Sized + Serialize>($/;"	f
serialize_newtype_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_newtype_variant<T: ?Sized>(self, _: &'static str, _: usize, _: &'static str, _: &T) -> Result<Self::Ok, Self::Error>$/;"	f
serialize_newtype_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_newtype_variant<T: ?Sized>($/;"	f
serialize_newtype_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_newtype_variant<T: ?Sized>($/;"	f
serialize_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_none(self) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_none(self) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_none(self) -> Result<()> {$/;"	f
serialize_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_none(self) -> Result<Value, Error> {$/;"	f
serialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^macro_rules! serialize_seq {$/;"	d
serialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_seq($/;"	f
serialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_seq(self, _: Option<usize>) -> Result<Self::SerializeSeq, Self::Error> {$/;"	f
serialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_seq(self, _len: Option<usize>) -> Result<Self::SerializeSeq> {$/;"	f
serialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq> {$/;"	f
serialize_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_seq($/;"	f
serialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_seq_fixed_size($/;"	f
serialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_seq_fixed_size(self, _: usize) -> Result<Self::SerializeSeq, Self::Error> {$/;"	f
serialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_seq_fixed_size(self, _size: usize) -> Result<Self::SerializeSeq> {$/;"	f
serialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_seq_fixed_size(self, size: usize) -> Result<Self::SerializeSeq> {$/;"	f
serialize_seq_fixed_size	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_seq_fixed_size($/;"	f
serialize_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_some<T: ?Sized + Serialize>($/;"	f
serialize_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_some<T: ?Sized>(self, _: &T) -> Result<Self::Ok, Self::Error>$/;"	f
serialize_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_some<T: ?Sized>(self, _value: &T) -> Result<()>$/;"	f
serialize_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_some<T: ?Sized>(self, value: &T) -> Result<()>$/;"	f
serialize_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_some<T: ?Sized>(self, value: &T) -> Result<Value, Error>$/;"	f
serialize_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_str(self, value: &str) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_str(self, _: &str) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_str(self, value: &str) -> Result<()> {$/;"	f
serialize_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_str(self, value: &str) -> Result<Value, Error> {$/;"	f
serialize_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_struct($/;"	f
serialize_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_struct(self, name: &'static str, len: usize) -> Result<Self::SerializeStruct, Self::Error> {$/;"	f
serialize_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_struct($/;"	f
serialize_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_struct($/;"	f
serialize_struct_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_struct_variant($/;"	f
serialize_struct_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_struct_variant(self, _: &'static str, _: usize, _: &'static str, _: usize) -> Result<Self::SerializeStructVariant, Self::Error> {$/;"	f
serialize_struct_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_struct_variant($/;"	f
serialize_struct_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_struct_variant($/;"	f
serialize_tagged_newtype	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^pub fn serialize_tagged_newtype<S, T>($/;"	f
serialize_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_tuple($/;"	f
serialize_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_tuple(self, _: usize) -> Result<Self::SerializeTuple, Self::Error> {$/;"	f
serialize_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_tuple(self, _len: usize) -> Result<Self::SerializeTuple> {$/;"	f
serialize_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple> {$/;"	f
serialize_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Error> {$/;"	f
serialize_tuple_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_tuple_struct($/;"	f
serialize_tuple_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_tuple_struct(self, _: &'static str, _: usize) -> Result<Self::SerializeTupleStruct, Self::Error> {$/;"	f
serialize_tuple_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_tuple_struct($/;"	f
serialize_tuple_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_tuple_struct($/;"	f
serialize_tuple_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_tuple_variant($/;"	f
serialize_tuple_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_tuple_variant(self, _: &'static str, _: usize, _: &'static str, _: usize) -> Result<Self::SerializeTupleVariant, Self::Error> {$/;"	f
serialize_tuple_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_tuple_variant($/;"	f
serialize_tuple_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_tuple_variant($/;"	f
serialize_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_u16(self, _: u16) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_u16(self, value: u16) -> Result<()> {$/;"	f
serialize_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_u16(self, value: u16) -> Result<Value, Error> {$/;"	f
serialize_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_u32(self, _: u32) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_u32(self, value: u32) -> Result<()> {$/;"	f
serialize_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_u32(self, value: u32) -> Result<Value, Error> {$/;"	f
serialize_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_u64(self, _: u64) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_u64(self, value: u64) -> Result<()> {$/;"	f
serialize_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_u64(self, value: u64) -> Result<Value, Error> {$/;"	f
serialize_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_u8(self, v: u8) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_u8(self, _: u8) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_u8(self, value: u8) -> Result<()> {$/;"	f
serialize_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_u8(self, value: u8) -> Result<Value, Error> {$/;"	f
serialize_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_unit(self) -> Result<Self::Ok, Self::Error>;$/;"	f
serialize_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_unit(self) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_unit(self) -> Result<()> {$/;"	f
serialize_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_unit(self) -> Result<Value, Error> {$/;"	f
serialize_unit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_unit_struct($/;"	f
serialize_unit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_unit_struct(self, _: &'static str) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_unit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_unit_struct(self, _name: &'static str) -> Result<()> {$/;"	f
serialize_unit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_unit_struct($/;"	f
serialize_unit_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_unit_variant($/;"	f
serialize_unit_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/private.rs	/^    fn serialize_unit_variant(self, _: &'static str, _: usize, _: &'static str) -> Result<Self::Ok, Self::Error> {$/;"	f
serialize_unit_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_unit_variant($/;"	f
serialize_unit_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_unit_variant($/;"	f
serialize_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impossible.rs	/^    fn serialize_value<T: ?Sized + Serialize>(&mut self,$/;"	f
serialize_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/mod.rs	/^    fn serialize_value<T: ?Sized + Serialize>(&mut self, value: &T) -> Result<(), Self::Error>;$/;"	f
serialize_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn serialize_value<T: ?Sized>($/;"	f
serialize_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn serialize_value<T: ?Sized>(&mut self, value: &T) -> Result<(), Error>$/;"	f
set_ampm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_ampm(&mut self, value: bool) -> ParseResult<()> {$/;"	f
set_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_day(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_hour(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_hour12	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_hour12(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_if_consistent	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^fn set_if_consistent<T: PartialEq>(old: &mut Option<T>, new: T) -> ParseResult<()> {$/;"	f
set_isoweek	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_isoweek(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_isoyear	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_isoyear(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_isoyear_div_100	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_isoyear_div_100(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_isoyear_mod_100	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_isoyear_mod_100(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_london_with_dst_time_zone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn set_london_with_dst_time_zone() -> TzReset {$/;"	f
set_los_angeles_time_zone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn set_los_angeles_time_zone() -> TzReset {$/;"	f
set_minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_minute(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_month(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_nanosecond(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_newlines	/home/dpc/lab/rust/slog/json/lib.rs	/^    pub fn set_newlines(mut self, enabled: bool) -> Self {$/;"	f
set_newlines	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    pub fn set_newlines(mut self, enabled: bool) -> Self {$/;"	f
set_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_offset(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_ordinal(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_second(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_time_zone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn set_time_zone() -> TzReset {$/;"	f
set_time_zone_la_or_london	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn set_time_zone_la_or_london(london: bool) -> TzReset {$/;"	f
set_time_zone_london_dst	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn set_time_zone_london_dst() -> TzReset {$/;"	f
set_timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_timestamp(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_week_from_mon	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_week_from_mon(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_week_from_sun	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_week_from_sun(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_weekday(&mut self, value: Weekday) -> ParseResult<()> {$/;"	f
set_weekday_with_num_days_from_sunday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn set_weekday_with_num_days_from_sunday(p: &mut Parsed, v: i64) -> ParseResult<()> {$/;"	f
set_weekday_with_number_from_monday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn set_weekday_with_number_from_monday(p: &mut Parsed, v: i64) -> ParseResult<()> {$/;"	f
set_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_year(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_year_div_100	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_year_div_100(&mut self, value: i64) -> ParseResult<()> {$/;"	f
set_year_mod_100	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn set_year_mod_100(&mut self, value: i64) -> ParseResult<()> {$/;"	f
short_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn short_month0(s: &str) -> ParseResult<(&str, u8)> {$/;"	f
short_or_long_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn short_or_long_month0(s: &str) -> ParseResult<(&str, u8)> {$/;"	f
short_or_long_weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn short_or_long_weekday(s: &str) -> ParseResult<(&str, Weekday)> {$/;"	f
short_weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn short_weekday(s: &str) -> ParseResult<(&str, Weekday)> {$/;"	f
signed_duration_since	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn signed_duration_since<Tz2: TimeZone>(self, rhs: Date<Tz2>) -> OldDuration {$/;"	f
signed_duration_since	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn signed_duration_since<Tz2: TimeZone>(self, rhs: DateTime<Tz2>) -> OldDuration {$/;"	f
signed_duration_since	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn signed_duration_since(self, rhs: NaiveDate) -> OldDuration {$/;"	f
signed_duration_since	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn signed_duration_since(self, rhs: NaiveDateTime) -> OldDuration {$/;"	f
signed_duration_since	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    pub fn signed_duration_since(self, rhs: NaiveTime) -> OldDuration {$/;"	f
single	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn single(self) -> Option<T> {$/;"	f
size_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	f
size_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	f
size_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn size_hint(&self) -> (usize, Option<usize>) {$/;"	f
size_hint	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	f
slog::Drain for Json	/home/dpc/lab/rust/slog/json/lib.rs	/^impl<W> slog::Drain for Json<W>$/;"	i
slog::Drain for Json	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^impl<W> slog::Drain for Json<W>$/;"	i
slog::Serializer for SerdeSerializer	/home/dpc/lab/rust/slog/json/lib.rs	/^impl<S> slog::Serializer for SerdeSerializer<S>$/;"	i
slog::Serializer for SerdeSerializer	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^impl<S> slog::Serializer for SerdeSerializer<S>$/;"	i
slog_b	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_b($/;"	d
slog_crit	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_crit($/;"	d
slog_debug	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_debug($/;"	d
slog_error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_error($/;"	d
slog_info	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_info($/;"	d
slog_log	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_log($/;"	d
slog_o	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_o($/;"	d
slog_record	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_record($/;"	d
slog_record_static	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_record_static($/;"	d
slog_trace	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_trace($/;"	d
slog_warn	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! slog_warn($/;"	d
sp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^macro_rules! sp   { ($x:expr) => (Item::Space($x)) }$/;"	d
space	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn space(s: &str) -> ParseResult<&str> {$/;"	f
span	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn span<F>(f: F) -> Duration where F: FnOnce() {$/;"	f
split	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        fn split(self) -> (A, B) { self }$/;"	f
split	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        fn split(self) -> (Self::First, Self::Second);$/;"	f
split_first	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn split_first(&self) -> Option<(&KV, &KV)> {$/;"	f
split_first	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    fn split_first(&self) -> Option<(&KV, &KV)>;$/;"	f
start	/home/dpc/lab/rust/slog/json/lib.rs	/^    fn start(ser: S, len: Option<usize>) -> result::Result<Self, slog::Error> {$/;"	f
start	/home/dpc/lab/rust/slog/json/target/package/slog-json-2.0.0-alpha1/lib.rs	/^    fn start(ser: S, len: Option<usize>) -> result::Result<Self, slog::Error> {$/;"	f
std::error::Error for Error	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^impl std::error::Error for Error {$/;"	i
std_only	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^mod std_only {$/;"	m
str::FromStr for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl str::FromStr for DateTime<FixedOffset> {$/;"	i
str::FromStr for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl str::FromStr for DateTime<Local> {$/;"	i
str::FromStr for DateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^impl str::FromStr for DateTime<UTC> {$/;"	i
str::FromStr for NaiveDate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^impl str::FromStr for NaiveDate {$/;"	i
str::FromStr for NaiveDateTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^impl str::FromStr for NaiveDateTime {$/;"	i
str::FromStr for NaiveTime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^impl str::FromStr for NaiveTime {$/;"	i
str::FromStr for Value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^impl str::FromStr for Value {$/;"	i
strftime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^pub mod strftime;$/;"	m
strftime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn strftime<'a>(&'a self, format: &'a str) -> Result<TmFmt<'a>, ParseError> {$/;"	f
strftime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn strftime(format: &str, tm: &Tm) -> Result<String, ParseError> {$/;"	f
strptime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/parse.rs	/^pub fn strptime(mut s: &str, format: &str) -> Result<Tm, ParseError> {$/;"	f
struct_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        struct struct_field tuple enum ignored_any byte_buf$/;"	s
struct_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        struct struct_field tuple ignored_any byte_buf$/;"	s
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn sub(self, rhs: OldDuration) -> Date<Tz> {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn sub(self, rhs: OldDuration) -> DateTime<Tz> {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn sub(self, rhs: OldDuration) -> NaiveDate {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn sub(self, rhs: OldDuration) -> NaiveDateTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn sub(self, rhs: OldDuration) -> NaiveTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn sub(self, rhs: FixedOffset) -> DateTime<Tz> {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn sub(self, rhs: FixedOffset) -> NaiveDateTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn sub(self, rhs: FixedOffset) -> NaiveTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn sub(self, rhs: Duration) -> Duration {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn sub(self, other: Duration) -> SteadyTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn sub(self, other: Duration) -> Timespec {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn sub(self, other: Duration) -> Tm {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn sub(self, other: SteadyTime) -> Duration {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn sub(self, other: Timespec) -> Duration {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn sub(self, other: Tm) -> Duration {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn sub(self, other: Duration) -> SteadyTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn sub(self, other: SteadyTime) -> Duration {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn sub(self, other: Duration) -> SteadyTime {$/;"	f
sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn sub(self, other: SteadyTime) -> Duration {$/;"	f
succ	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn succ(&self) -> Date<Tz> {$/;"	f
succ	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub fn succ(&self) -> Weekday {$/;"	f
succ	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn succ(&self) -> Of {$/;"	f
succ	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn succ(&self) -> NaiveDate {$/;"	f
succ_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn succ_opt(&self) -> Option<Date<Tz>> {$/;"	f
succ_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn succ_opt(&self) -> Option<NaiveDate> {$/;"	f
syntax	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/error.rs	/^    pub fn syntax(code: ErrorCode, line: usize, col: usize) -> Self {$/;"	f
sys	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^mod sys;$/;"	m
system_time_to_file_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn system_time_to_file_time(sys: &SYSTEMTIME) -> FILETIME {$/;"	f
system_time_to_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn system_time_to_tm(sys: &SYSTEMTIME, tm: &mut Tm) {$/;"	f
tag	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^    pub fn tag(&self) -> &str {$/;"	f
test	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        fn test(s: &str, format: &str) -> bool {$/;"	f
test_asctime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_asctime() {$/;"	f
test_at	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_at() {$/;"	f
test_at_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_at_utc() {$/;"	f
test_conversions	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_conversions() {$/;"	f
test_ctime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_ctime() {$/;"	f
test_date_add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_add() {$/;"	f
test_date_before_1970	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_date_before_1970() {$/;"	f
test_date_bounds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^fn test_date_bounds() {$/;"	f
test_date_extreme_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    fn test_date_extreme_offset() {$/;"	f
test_date_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_fields() {$/;"	f
test_date_fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_fmt() {$/;"	f
test_date_format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_format() {$/;"	f
test_date_from_isoywd	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_from_isoywd() {$/;"	f
test_date_from_isoywd_and_isoweekdate	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_from_isoywd_and_isoweekdate() {$/;"	f
test_date_from_num_days_from_ce	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_from_num_days_from_ce() {$/;"	f
test_date_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_from_str() {$/;"	f
test_date_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_date_from_str() {$/;"	f
test_date_from_ymd	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_from_ymd() {$/;"	f
test_date_from_yo	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_from_yo() {$/;"	f
test_date_num_days_from_ce	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_num_days_from_ce() {$/;"	f
test_date_parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_parse_from_str() {$/;"	f
test_date_pred	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_pred() {$/;"	f
test_date_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_sub() {$/;"	f
test_date_succ	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_succ() {$/;"	f
test_date_weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_weekday() {$/;"	f
test_date_with_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_date_with_fields() {$/;"	f
test_datetime_add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_add() {$/;"	f
test_datetime_add_sub_invariant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_add_sub_invariant() { \/\/ issue #37$/;"	f
test_datetime_date_and_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_date_and_time() {$/;"	f
test_datetime_format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_format() {$/;"	f
test_datetime_format_with_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_format_with_local() {$/;"	f
test_datetime_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_from_str() {$/;"	f
test_datetime_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_from_str() {$/;"	f
test_datetime_from_timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_from_timestamp() {$/;"	f
test_datetime_is_copy	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_is_copy() {$/;"	f
test_datetime_is_send	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_is_send() {$/;"	f
test_datetime_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_offset() {$/;"	f
test_datetime_parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_parse_from_str() {$/;"	f
test_datetime_parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_parse_from_str() {$/;"	f
test_datetime_rfc2822_and_rfc3339	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_rfc2822_and_rfc3339() {$/;"	f
test_datetime_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_sub() {$/;"	f
test_datetime_timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_datetime_timestamp() {$/;"	f
test_datetime_with_timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_datetime_with_timezone() {$/;"	f
test_decodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_decodable() {$/;"	f
test_decodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_decodable() {$/;"	f
test_decodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_decodable() {$/;"	f
test_decodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_decodable() {$/;"	f
test_decodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^fn test_decodable_json<FUTC, FFixed, FLocal, E>(utc_from_str: FUTC,$/;"	f
test_decodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^fn test_decodable_json<F, E>(from_str: F)$/;"	f
test_decodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^fn test_decodable_json<F, E>(from_str: F)$/;"	f
test_decodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^fn test_decodable_json<F, E>(from_str: F)$/;"	f
test_div_mod_floor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/div.rs	/^    fn test_div_mod_floor() {$/;"	f
test_dst	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_dst() {$/;"	f
test_duration	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration() {$/;"	f
test_duration_checked_ops	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_checked_ops() {$/;"	f
test_duration_div	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_div() {$/;"	f
test_duration_fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_fmt() {$/;"	f
test_duration_mul	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_mul() {$/;"	f
test_duration_num_days	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_num_days() {$/;"	f
test_duration_num_microseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_num_microseconds() {$/;"	f
test_duration_num_milliseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_num_milliseconds() {$/;"	f
test_duration_num_nanoseconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_num_nanoseconds() {$/;"	f
test_duration_num_seconds	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_duration_num_seconds() {$/;"	f
test_encodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_encodable() {$/;"	f
test_encodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_encodable() {$/;"	f
test_encodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_encodable() {$/;"	f
test_encodable	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_encodable() {$/;"	f
test_encodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^fn test_encodable_json<FUTC, FFixed, E>(to_string_utc: FUTC, to_string_fixed: FFixed)$/;"	f
test_encodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^fn test_encodable_json<F, E>(to_string: F)$/;"	f
test_encodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^fn test_encodable_json<F, E>(to_string: F)$/;"	f
test_encodable_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^fn test_encodable_json<F, E>(to_string: F)$/;"	f
test_from_std	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_from_std() {$/;"	f
test_get_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_get_time() {$/;"	f
test_leap_second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn test_leap_second() { \/\/ issue #123$/;"	f
test_local_date_sanity_check	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn test_local_date_sanity_check() { \/\/ issue #27$/;"	f
test_mdf_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_mdf_fields() {$/;"	f
test_mdf_to_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_mdf_to_of() {$/;"	f
test_mdf_to_of_to_mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_mdf_to_of_to_mdf() {$/;"	f
test_mdf_valid	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_mdf_valid() {$/;"	f
test_mdf_with_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_mdf_with_fields() {$/;"	f
test_mod_floor	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/div.rs	/^    fn test_mod_floor() {$/;"	f
test_muldiv	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn test_muldiv() {$/;"	f
test_o_macro_expansion	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    fn test_o_macro_expansion() {$/;"	f
test_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of() {$/;"	f
test_of_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of_fields() {$/;"	f
test_of_isoweekdate_raw	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of_isoweekdate_raw() {$/;"	f
test_of_to_mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of_to_mdf() {$/;"	f
test_of_to_mdf_to_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of_to_mdf_to_of() {$/;"	f
test_of_weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of_weekday() {$/;"	f
test_of_with_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_of_with_fields() {$/;"	f
test_oneway	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^        fn test_oneway(s : &str, format : &str) -> bool {$/;"	f
test_parse	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn test_parse() {$/;"	f
test_parsed_set_fields	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn test_parsed_set_fields() {$/;"	f
test_parsed_to_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn test_parsed_to_datetime() {$/;"	f
test_parsed_to_datetime_with_timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn test_parsed_to_datetime_with_timezone() {$/;"	f
test_parsed_to_naive_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn test_parsed_to_naive_date() {$/;"	f
test_parsed_to_naive_datetime_with_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn test_parsed_to_naive_datetime_with_offset() {$/;"	f
test_parsed_to_naive_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    fn test_parsed_to_naive_time() {$/;"	f
test_precise_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_precise_time() {$/;"	f
test_precise_time_to	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_precise_time_to() {$/;"	f
test_readme_doomsday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^fn test_readme_doomsday() {$/;"	f
test_rfc2822	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn test_rfc2822() {$/;"	f
test_rfc3339	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^fn test_rfc3339() {$/;"	f
test_serde_bincode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_serde_bincode() {$/;"	f
test_serde_bincode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_serde_bincode() {$/;"	f
test_serde_bincode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_serde_bincode() {$/;"	f
test_serde_bincode	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_serde_bincode() {$/;"	f
test_serde_deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_serde_deserialize() {$/;"	f
test_serde_deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_serde_deserialize() {$/;"	f
test_serde_deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_serde_deserialize() {$/;"	f
test_serde_deserialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_serde_deserialize() {$/;"	f
test_serde_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_serde_serialize() {$/;"	f
test_serde_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn test_serde_serialize() {$/;"	f
test_serde_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn test_serde_serialize() {$/;"	f
test_serde_serialize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_serde_serialize() {$/;"	f
test_slog_o_macro_expansion	/home/dpc/lab/rust/slog/json/../slog-rs/src/tests.rs	/^    fn test_slog_o_macro_expansion() {$/;"	f
test_steadytime_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_steadytime_sub() {$/;"	f
test_strftime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_strftime() {$/;"	f
test_strftime_docs	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^fn test_strftime_docs() {$/;"	f
test_strftime_items	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/strftime.rs	/^fn test_strftime_items() {$/;"	f
test_strptime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_strptime() {$/;"	f
test_subsecond_part	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn test_subsecond_part() {$/;"	f
test_time_add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_add() {$/;"	f
test_time_fmt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_fmt() {$/;"	f
test_time_format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_format() {$/;"	f
test_time_from_hms_micro	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_from_hms_micro() {$/;"	f
test_time_from_hms_milli	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_from_hms_milli() {$/;"	f
test_time_hms	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_hms() {$/;"	f
test_time_overflowing_add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_overflowing_add() {$/;"	f
test_time_parse_from_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_parse_from_str() {$/;"	f
test_time_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn test_time_sub() {$/;"	f
test_time_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_time_sub() {$/;"	f
test_timespec_add	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_timespec_add() {$/;"	f
test_timespec_eq_ord	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_timespec_eq_ord() {$/;"	f
test_timespec_hash	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_timespec_hash() {$/;"	f
test_timespec_sub	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_timespec_sub() {$/;"	f
test_to_std	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    fn test_to_std() {$/;"	f
test_to_timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    fn test_to_timespec() {$/;"	f
test_year_flags_ndays_from_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_year_flags_ndays_from_year() {$/;"	f
test_year_flags_nisoweeks	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn test_year_flags_nisoweeks() {$/;"	f
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/div.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^mod tests {$/;"	m
tests	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^mod tests {$/;"	m
tests	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^mod tests;$/;"	m
time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn time(&self) -> NaiveTime {$/;"	f
time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    pub mod time;$/;"	m
time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn time(&self) -> NaiveTime {$/;"	f
time_to_file_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn time_to_file_time(sec: i64) -> FILETIME {$/;"	f
time_to_local_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn time_to_local_tm(sec: i64, tm: &mut Tm) {$/;"	f
time_to_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn time_to_tm(ts: i64, tm: &mut Tm) {$/;"	f
time_to_utc_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn time_to_utc_tm(sec: i64, tm: &mut Tm) {$/;"	f
timegm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    unsafe fn timegm(tm: *const libc::tm) -> time_t {$/;"	f
timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn timestamp(&self) -> i64 {$/;"	f
timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn timestamp(&self) -> i64 {$/;"	f
timestamp	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn timestamp(&self, secs: i64, nsecs: u32) -> DateTime<Self> {$/;"	f
timestamp_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn timestamp_opt(&self, secs: i64, nsecs: u32) -> LocalResult<DateTime<Self>> {$/;"	f
timestamp_subsec_micros	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn timestamp_subsec_micros(&self) -> u32 {$/;"	f
timestamp_subsec_micros	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn timestamp_subsec_micros(&self) -> u32 {$/;"	f
timestamp_subsec_millis	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn timestamp_subsec_millis(&self) -> u32 {$/;"	f
timestamp_subsec_millis	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn timestamp_subsec_millis(&self) -> u32 {$/;"	f
timestamp_subsec_nanos	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn timestamp_subsec_nanos(&self) -> u32 {$/;"	f
timestamp_subsec_nanos	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    pub fn timestamp_subsec_nanos(&self) -> u32 {$/;"	f
timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn timezone(&self) -> Tz {$/;"	f
timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn timezone(&self) -> Tz {$/;"	f
timezone_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn timezone_offset<F>(mut s: &str, mut colon: F) -> ParseResult<(&str, i32)>$/;"	f
timezone_offset_2822	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn timezone_offset_2822(s: &str) -> ParseResult<(&str, Option<i32>)> {$/;"	f
timezone_offset_zulu	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/scan.rs	/^pub fn timezone_offset_zulu<F>(s: &str, colon: F) -> ParseResult<(&str, i32)>$/;"	f
tm_to_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^fn tm_to_datetime(mut tm: oldtime::Tm) -> DateTime<Local> {$/;"	f
tm_to_naive_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    fn tm_to_naive_date(tm: &oldtime::Tm) -> NaiveDate {$/;"	f
tm_to_rust_tm	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn tm_to_rust_tm(tm: &libc::tm, utcoff: i32, rust_tm: &mut Tm) {$/;"	f
tm_to_system_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn tm_to_system_time(tm: &Tm) -> SYSTEMTIME {$/;"	f
tm_to_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    fn tm_to_time(tm: &Tm) -> i64 {$/;"	f
to	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn to(&self, later: PreciseTime) -> Duration {$/;"	f
to_datetime	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn to_datetime(&self) -> ParseResult<DateTime<FixedOffset>> {$/;"	f
to_datetime_with_timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn to_datetime_with_timezone<Tz: TimeZone>(&self, tz: &Tz) -> ParseResult<DateTime<Tz>> {$/;"	f
to_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_f32(&self) -> Option<f32> { Some(*self as f32) }$/;"	f
to_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_f32(&self) -> Option<f32> { impl_to_primitive_float_to_float!($T, f32, *self) }$/;"	f
to_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_f32(&self) -> Option<f32> {$/;"	f
to_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_f64(&self) -> Option<f64> { Some(*self as f64) }$/;"	f
to_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_f64(&self) -> Option<f64> { impl_to_primitive_float_to_float!($T, f64, *self) }$/;"	f
to_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_f64(&self) -> Option<f64> {$/;"	f
to_fixed_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn to_fixed_offset(&self) -> ParseResult<FixedOffset> {$/;"	f
to_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i16(&self) -> Option<i16> { Some(*self as i16) }$/;"	f
to_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i16(&self) -> Option<i16> { impl_to_primitive_int_to_int!($T, i16, *self) }$/;"	f
to_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i16(&self) -> Option<i16> { impl_to_primitive_uint_to_int!(i16, *self) }$/;"	f
to_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_i16(&self) -> Option<i16> {$/;"	f
to_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i32(&self) -> Option<i32> { Some(*self as i32) }$/;"	f
to_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i32(&self) -> Option<i32> { impl_to_primitive_int_to_int!($T, i32, *self) }$/;"	f
to_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i32(&self) -> Option<i32> { impl_to_primitive_uint_to_int!(i32, *self) }$/;"	f
to_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_i32(&self) -> Option<i32> {$/;"	f
to_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i64(&self) -> Option<i64> { Some(*self as i64) }$/;"	f
to_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i64(&self) -> Option<i64> { impl_to_primitive_int_to_int!($T, i64, *self) }$/;"	f
to_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i64(&self) -> Option<i64> { impl_to_primitive_uint_to_int!(i64, *self) }$/;"	f
to_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_i64(&self) -> Option<i64>;$/;"	f
to_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i8(&self) -> Option<i8> { Some(*self as i8) }$/;"	f
to_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i8(&self) -> Option<i8> { impl_to_primitive_int_to_int!($T, i8, *self) }$/;"	f
to_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_i8(&self) -> Option<i8> { impl_to_primitive_uint_to_int!(i8, *self) }$/;"	f
to_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_i8(&self) -> Option<i8> {$/;"	f
to_isize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_isize(&self) -> Option<isize> { Some(*self as isize) }$/;"	f
to_isize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_isize(&self) -> Option<isize> { impl_to_primitive_int_to_int!($T, isize, *self) }$/;"	f
to_isize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_isize(&self) -> Option<isize> { impl_to_primitive_uint_to_int!(isize, *self) }$/;"	f
to_isize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_isize(&self) -> Option<isize> {$/;"	f
to_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn to_json(&self) -> Result<Value, Error> {$/;"	f
to_json	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn to_json(&self) -> Result<Value, Error>;$/;"	f
to_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn to_local(&self) -> Tm {$/;"	f
to_mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn to_mdf(&self) -> Mdf {$/;"	f
to_naive_date	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn to_naive_date(&self) -> ParseResult<NaiveDate> {$/;"	f
to_naive_datetime_with_offset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn to_naive_datetime_with_offset(&self, offset: i32) -> ParseResult<NaiveDateTime> {$/;"	f
to_naive_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parsed.rs	/^    pub fn to_naive_time(&self) -> ParseResult<NaiveTime> {$/;"	f
to_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn to_of(&self) -> Of {$/;"	f
to_rfc2822	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn to_rfc2822(&self) -> String {$/;"	f
to_rfc3339	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn to_rfc3339(&self) -> String {$/;"	f
to_std	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn to_std(&self) -> Result<StdDuration, OutOfRangeError> {$/;"	f
to_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub fn to_string<T: ?Sized>(value: &T) -> Result<String>$/;"	f
to_string_pretty	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub fn to_string_pretty<T: ?Sized>(value: &T) -> Result<String>$/;"	f
to_timespec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn to_timespec(&self) -> Timespec {$/;"	f
to_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u16(&self) -> Option<u16> { Some(*self as u16) }$/;"	f
to_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u16(&self) -> Option<u16> { impl_to_primitive_int_to_uint!($T, u16, *self) }$/;"	f
to_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u16(&self) -> Option<u16> { impl_to_primitive_uint_to_uint!($T, u16, *self) }$/;"	f
to_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_u16(&self) -> Option<u16> {$/;"	f
to_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u32(&self) -> Option<u32> { Some(*self as u32) }$/;"	f
to_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u32(&self) -> Option<u32> { impl_to_primitive_int_to_uint!($T, u32, *self) }$/;"	f
to_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u32(&self) -> Option<u32> { impl_to_primitive_uint_to_uint!($T, u32, *self) }$/;"	f
to_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_u32(&self) -> Option<u32> {$/;"	f
to_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u64(&self) -> Option<u64> { Some(*self as u64) }$/;"	f
to_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u64(&self) -> Option<u64> { impl_to_primitive_int_to_uint!($T, u64, *self) }$/;"	f
to_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u64(&self) -> Option<u64> { impl_to_primitive_uint_to_uint!($T, u64, *self) }$/;"	f
to_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_u64(&self) -> Option<u64>;$/;"	f
to_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u8(&self) -> Option<u8> { Some(*self as u8) }$/;"	f
to_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u8(&self) -> Option<u8> { impl_to_primitive_int_to_uint!($T, u8, *self) }$/;"	f
to_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_u8(&self) -> Option<u8> { impl_to_primitive_uint_to_uint!($T, u8, *self) }$/;"	f
to_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_u8(&self) -> Option<u8> {$/;"	f
to_usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_usize(&self) -> Option<usize> { Some(*self as usize) }$/;"	f
to_usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_usize(&self) -> Option<usize> { impl_to_primitive_int_to_uint!($T, usize, *self) }$/;"	f
to_usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^            fn to_usize(&self) -> Option<usize> {$/;"	f
to_usize	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/from_primitive.rs	/^    fn to_usize(&self) -> Option<usize> {$/;"	f
to_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^    pub fn to_utc(&self) -> Tm {$/;"	f
to_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^pub fn to_value<T>(value: T) -> Result<Value, Error>$/;"	f
to_vec	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub fn to_vec<T: ?Sized>(value: &T) -> Result<Vec<u8>>$/;"	f
to_vec_pretty	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub fn to_vec_pretty<T: ?Sized>(value: &T) -> Result<Vec<u8>>$/;"	f
to_writer	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub fn to_writer<W: ?Sized, T: ?Sized>(writer: &mut W, value: &T) -> Result<()>$/;"	f
to_writer_pretty	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^pub fn to_writer_pretty<W: ?Sized, T: ?Sized>(writer: &mut W, value: &T) -> Result<()>$/;"	f
today	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/local.rs	/^    pub fn today() -> Date<Local> {$/;"	f
today	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/utc.rs	/^    pub fn today() -> Date<UTC> { UTC::now().date() }$/;"	f
trace	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! trace($/;"	d
try_consume	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/parse.rs	/^    macro_rules! try_consume {$/;"	d
try_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^macro_rules! try_opt {$/;"	d
try_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^macro_rules! try_opt {$/;"	d
tuple_impls	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^macro_rules! tuple_impls {$/;"	d
tuple_impls	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/ser/impls.rs	/^macro_rules! tuple_impls {$/;"	d
tzset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn tzset() {$/;"	f
tzset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^pub fn tzset() {}$/;"	f
tzset	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^            fn tzset();$/;"	f
unexpected	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn unexpected(&self) -> Unexpected {$/;"	f
unit_only	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    pub fn unit_only<T, E>(t: T) -> (T, UnitOnly<E>) {$/;"	f
unix	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    mod unix {$/;"	m
unknown_field	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self {$/;"	f
unknown_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self {$/;"	f
unwrap	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    pub fn unwrap(self) -> T {$/;"	f
utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^pub mod utc;$/;"	m
utc_minus_local	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    pub fn utc_minus_local(&self) -> i32 {$/;"	f
utc_tm_to_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn utc_tm_to_time(rust_tm: &Tm) -> i64 {$/;"	f
utc_tm_to_time	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^    pub fn utc_tm_to_time(tm: &Tm) -> i64 {$/;"	f
utils	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/lib.rs	/^mod utils;$/;"	m
valid	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn valid(&self) -> bool {$/;"	f
validate_format	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/lib.rs	/^fn validate_format<'a>(fmt: TmFmt<'a>) -> Result<TmFmt<'a>, ParseError> {$/;"	f
value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^pub mod value;$/;"	m
value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/lib.rs	/^pub mod value;$/;"	m
values	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn values(&self) -> MapValues {$/;"	f
visit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit<K, V>(&mut self) -> Result<Option<(K, V)>, Self::Error>$/;"	f
visit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit<K, V>(&mut self) -> Result<Option<(K, V)>, V_::Error>$/;"	f
visit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit<T>(&mut self) -> Result<Option<T>, Self::Error>$/;"	f
visit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit<T>(&mut self) -> Result<Option<T>, V::Error>$/;"	f
visit_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_bool<F>(self, value: bool) -> Result<Self::Value, F>$/;"	f
visit_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_bool<E>(self, _: bool) -> Result<IgnoredAny, E> {$/;"	f
visit_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_bool<E>(self, v: bool) -> Result<bool, E>$/;"	f
visit_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>$/;"	f
visit_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_bool<E>(self, value: bool) -> Result<Value, E> {$/;"	f
visit_byte_buf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<ByteBuf, E>$/;"	f
visit_byte_buf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_byte_buf<F>(self, value: Vec<u8>) -> Result<Self::Value, F>$/;"	f
visit_byte_buf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<String, E>$/;"	f
visit_byte_buf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E>$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn visit_bytes<E>(self, v: &[u8]) -> Result<ByteBuf, E>$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_bytes<F>(self, value: &[u8]) -> Result<Self::Value, F>$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn visit_bytes<E>(self, value: &[u8]) -> Result<Field, E> where E: Error {$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn visit_bytes<E>(self, value: &[u8]) -> Result<Field, E>$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_bytes<E>(self, _: &[u8]) -> Result<IgnoredAny, E>$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_bytes<E>(self, v: &[u8]) -> Result<String, E>$/;"	f
visit_bytes	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E>$/;"	f
visit_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_char<F>(self, value: char) -> Result<Self::Value, F>$/;"	f
visit_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_char<E>(self, v: char) -> Result<char, E>$/;"	f
visit_char	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_char<E>(self, v: char) -> Result<Self::Value, E>$/;"	f
visit_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_enum<V>(self, _visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_enum<V>(self, visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_enum<V>(self, visitor: V) -> Result<Result<T, E>, V::Error>$/;"	f
visit_enum	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_enum<V>(self, visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_f32<F>(self, value: f32) -> Result<Self::Value, F>$/;"	f
visit_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_f32<E>(self, v: f32) -> Result<Self::Value, E>$/;"	f
visit_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_f64<F>(self, value: f64) -> Result<Self::Value, F>$/;"	f
visit_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_f64<E>(self, _: f64) -> Result<IgnoredAny, E> {$/;"	f
visit_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_f64<E>(self, v: f64) -> Result<Self::Value, E>$/;"	f
visit_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            fn visit_f64<E>(self, value: f64) -> Result<Number, E>$/;"	f
visit_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_f64<E>(self, value: f64) -> Result<Value, E> {$/;"	f
visit_f64_from_parts	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_f64_from_parts<V>($/;"	f
visit_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_i16<F>(self, value: i16) -> Result<Self::Value, F>$/;"	f
visit_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_i16<E>(self, v: i16) -> Result<Self::Value, E>$/;"	f
visit_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_i32<F>(self, value: i32) -> Result<Self::Value, F>$/;"	f
visit_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_i32<E>(self, v: i32) -> Result<Self::Value, E>$/;"	f
visit_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_i64<F>(self, value: i64) -> Result<Self::Value, F>$/;"	f
visit_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_i64<E>(self, _: i64) -> Result<IgnoredAny, E> {$/;"	f
visit_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E>$/;"	f
visit_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            fn visit_i64<E>(self, value: i64) -> Result<Number, E> {$/;"	f
visit_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_i64<E>(self, value: i64) -> Result<Value, E> {$/;"	f
visit_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_i8<F>(self, value: i8) -> Result<Self::Value, F>$/;"	f
visit_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_i8<E>(self, v: i8) -> Result<Self::Value, E>$/;"	f
visit_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_key<K>(&mut self) -> Result<Option<K>, Self::Error>$/;"	f
visit_key	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_key<K>(&mut self) -> Result<Option<K>, V_::Error>$/;"	f
visit_key_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_key_seed<K>(&mut self, seed: K) -> Result<Option<K::Value>, Self::Error>$/;"	f
visit_key_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn visit_key_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Self::Error>$/;"	f
visit_key_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_key_seed<K>(&mut self, seed: K) -> Result<Option<K::Value>>$/;"	f
visit_key_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_key_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_map<V>(self, _: V) -> Result<(), V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_map<V>(self, mut visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_map<V>(self, visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_map<V>(self, mut visitor: V) -> Result<Duration, V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_map<V>(self, mut visitor: V) -> Result<IgnoredAny, V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_map<Visitor>(self, mut $visitor: Visitor) -> Result<$ty, Visitor::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_map<V>(self, visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn visit_map<V>(self, mut visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_map	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_map<V>(self, mut visitor: V) -> Result<Value, V::Error>$/;"	f
visit_newtype	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_newtype<T>(self) -> Result<T, Self::Error>$/;"	f
visit_newtype_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_newtype_seed<T>(self, seed: T) -> Result<T::Value, Self::Error>$/;"	f
visit_newtype_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        fn visit_newtype_seed<T>(self, _seed: T) -> Result<T::Value, Self::Error>$/;"	f
visit_newtype_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_newtype_seed<T>(self, _seed: T) -> Result<T::Value>$/;"	f
visit_newtype_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_newtype_seed<T>(self, seed: T) -> Result<T::Value>$/;"	f
visit_newtype_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_newtype_seed<T>(self, seed: T) -> Result<T::Value, Error>$/;"	f
visit_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_newtype_struct<D>(self, deserializer: D) -> Result<Self::Value, D::Error>$/;"	f
visit_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_newtype_struct<D>(self, _: D) -> Result<IgnoredAny, D::Error>$/;"	f
visit_newtype_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_newtype_struct<D>(self, deserializer: D) -> Result<Self::Value, D::Error>$/;"	f
visit_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_none<F>(self) -> Result<Self::Value, F>$/;"	f
visit_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_none<E>(self) -> Result<IgnoredAny, E> {$/;"	f
visit_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_none<E>(self) -> Result<Option<T>, E>$/;"	f
visit_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_none<E>(self) -> Result<Self::Value, E>$/;"	f
visit_none	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_none<E>(self) -> Result<Value, E> {$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_seed<K, V>(&mut self, kseed: K, vseed: V) -> Result<Option<(K::Value, V::Value)>, Self::Error>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Self::Error>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, V::Error>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn visit_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Self::Error>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn visit_seed<TK, TV>(&mut self, kseed: TK, vseed: TV) -> Result<Option<(TK::Value, TV::Value)>, Self::Error>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn visit_seed<V>(&mut self, seed: V) -> Result<Option<V::Value>, Self::Error>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>>$/;"	f
visit_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_seed<T>(&mut self, seed: T) -> Result<Option<T::Value>, Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn visit_seq<V>(self, mut visitor: V) -> Result<ByteBuf, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_seq<V>(self, mut visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_seq<V>(self, visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                fn visit_seq<V>(self, mut visitor: V) -> Result<($($name,)+), V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                fn visit_seq<V>(self, mut visitor: V) -> Result<[T; $len], V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_seq<V>(self, mut $visitor: V) -> Result<$ty, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_seq<V>(self, mut visitor: V) -> Result<Duration, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_seq<V>(self, mut visitor: V) -> Result<IgnoredAny, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_seq<V>(self, _: V) -> Result<(), V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_seq<V>(self, _: V) -> Result<[T; 0], V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_seq<V>(self, visitor: V) -> Result<Self::Value, V::Error>$/;"	f
visit_seq	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_seq<V>(self, visitor: V) -> Result<Value, V::Error>$/;"	f
visit_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>$/;"	f
visit_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_some<D>(self, _: D) -> Result<IgnoredAny, D::Error>$/;"	f
visit_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_some<D>(self, deserializer: D) -> Result<Option<T>, D::Error>$/;"	f
visit_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_some<D>(self, deserializer: D) -> Result<Self::Value, D::Error>$/;"	f
visit_some	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_some<D>($/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^        fn visit_str<E>(self, value: &str) -> Result<DateTime<FixedOffset>, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        fn visit_str<E>(self, value: &str) -> Result<NaiveDate, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^        fn visit_str<E>(self, value: &str) -> Result<NaiveDateTime, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^        fn visit_str<E>(self, value: &str) -> Result<NaiveTime, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn visit_str<E>(self, v: &str) -> Result<ByteBuf, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_str<F>(self, value: &str) -> Result<Self::Value, F>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn visit_str<E>(self, s: &str) -> Result<$ty, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn visit_str<E>(self, value: &str) -> Result<Field, E> where E: Error {$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn visit_str<E>(self, value: &str) -> Result<Field, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_str<E>(self, _: &str) -> Result<IgnoredAny, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_str<E>(self, s: &str) -> Result<bool, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_str<E>(self, v: &str) -> Result<String, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_str<E>(self, v: &str) -> Result<char, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_str<E>(self, v: &str) -> Result<path::PathBuf, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>$/;"	f
visit_str	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_str<E>(self, value: &str) -> Result<Value, E>$/;"	f
visit_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn visit_string<E>(self, v: String) -> Result<ByteBuf, E>$/;"	f
visit_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_string<F>(self, value: String) -> Result<Self::Value, F>$/;"	f
visit_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_string<E>(self, v: String) -> Result<String, E>$/;"	f
visit_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_string<E>(self, v: String) -> Result<path::PathBuf, E>$/;"	f
visit_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_string<E>(self, v: String) -> Result<Self::Value, E>$/;"	f
visit_string	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_string<E>(self, value: String) -> Result<Value, E> {$/;"	f
visit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_struct<V>(self,$/;"	f
visit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        fn visit_struct<V>(self,$/;"	f
visit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_struct<V>($/;"	f
visit_struct	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_struct<V>($/;"	f
visit_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_tuple<V>(self,$/;"	f
visit_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        fn visit_tuple<V>(self,$/;"	f
visit_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_tuple<V>(self, _len: usize, _visitor: V) -> Result<V::Value>$/;"	f
visit_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_tuple<V>(self, _len: usize, visitor: V) -> Result<V::Value>$/;"	f
visit_tuple	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_tuple<V>($/;"	f
visit_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_u16<F>(self, value: u16) -> Result<Self::Value, F>$/;"	f
visit_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_u16<E>(self, v: u16) -> Result<Self::Value, E>$/;"	f
visit_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_u32<F>(self, value: u32) -> Result<Self::Value, F>$/;"	f
visit_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^                    fn visit_u32<E>(self, value: u32) -> Result<Field, E> where E: Error {$/;"	f
visit_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_u32<E>(self, v: u32) -> Result<Self::Value, E>$/;"	f
visit_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_u64<F>(self, value: u64) -> Result<Self::Value, F>$/;"	f
visit_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_u64<E>(self, _: u64) -> Result<IgnoredAny, E> {$/;"	f
visit_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E>$/;"	f
visit_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/number.rs	/^            fn visit_u64<E>(self, value: u64) -> Result<Number, E> {$/;"	f
visit_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_u64<E>(self, value: u64) -> Result<Value, E> {$/;"	f
visit_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_u8<F>(self, value: u8) -> Result<Self::Value, F>$/;"	f
visit_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_u8<E>(self, v: u8) -> Result<Self::Value, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        fn visit_unit<E>(self) -> Result<ByteBuf, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_unit<E>(self) -> Result<(), E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/content.rs	/^    fn visit_unit<F>(self) -> Result<Self::Value, F>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_unit<E>(self) -> Result<$ty, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^            fn visit_unit<E>(self) -> Result<IgnoredAny, E> {$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_unit<E>(self) -> Result<(), E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_unit<E>(self) -> Result<Option<T>, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_unit<E>(self) -> Result<PhantomData<T>, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_unit<E>(self) -> Result<String, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/impls.rs	/^    fn visit_unit<E>(self) -> Result<[T; 0], E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_unit(self) -> Result<(), Self::Error>;$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_unit<E>(self) -> Result<Self::Value, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^        fn visit_unit(self) -> Result<(), Self::Error> {$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_unit(self) -> Result<()> {$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^            fn visit_unit<E>(self) -> Result<Self::Value, E>$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^            fn visit_unit<E>(self) -> Result<Value, E> {$/;"	f
visit_unit	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_unit(self) -> Result<(), Error> {$/;"	f
visit_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_value<V>(&mut self) -> Result<V, Self::Error>$/;"	f
visit_value	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_value<V>(&mut self) -> Result<V, V_::Error>$/;"	f
visit_value_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_value_seed<V>(&mut self, seed: V) -> Result<V::Value, Self::Error>$/;"	f
visit_value_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn visit_value_seed<T>(&mut self, seed: T) -> Result<T::Value, Self::Error>$/;"	f
visit_value_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_value_seed<V>(&mut self, seed: V) -> Result<V::Value>$/;"	f
visit_value_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_value_seed<T>(&mut self, seed: T) -> Result<T::Value, Error>$/;"	f
visit_variant	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_variant<V>(self) -> Result<(V, Self::Variant), Self::Error>$/;"	f
visit_variant_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/mod.rs	/^    fn visit_variant_seed<V>(self, seed: V) -> Result<(V::Value, Self::Variant), Self::Error>$/;"	f
visit_variant_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/de/value.rs	/^    fn visit_variant_seed<T>(self, seed: T) -> Result<(T::Value, Self::Variant), Self::Error>$/;"	f
visit_variant_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/de.rs	/^    fn visit_variant_seed<V>(self, seed: V) -> Result<(V::Value, Self)>$/;"	f
visit_variant_seed	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn visit_variant_seed<V>(self, seed: V) -> Result<(V::Value, VariantDeserializer), Error>$/;"	f
warn	/home/dpc/lab/rust/slog/json/../slog-rs/src/lib.rs	/^macro_rules! warn($/;"	d
weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn weekday(&self) -> Weekday;$/;"	f
weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn weekday(&self) -> Weekday {$/;"	f
weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn weekday(&self) -> Weekday {$/;"	f
weekday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn weekday(&self) -> Weekday {$/;"	f
weeks	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn weeks(weeks: i64) -> Duration {$/;"	f
west	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    pub fn west(secs: i32) -> FixedOffset {$/;"	f
west_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/fixed.rs	/^    pub fn west_opt(secs: i32) -> Option<FixedOffset> {$/;"	f
with_capacity	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-0.9.7/src/bytes.rs	/^        pub fn with_capacity(cap: usize) -> Self {$/;"	f
with_capacity	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/map.rs	/^    pub fn with_capacity(capacity: usize) -> Self {$/;"	f
with_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_day(&self, day: u32) -> Option<Date<Tz>> {$/;"	f
with_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_day(&self, day: u32) -> Option<DateTime<Tz>> {$/;"	f
with_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_day(&self, day: u32) -> Option<Self>;$/;"	f
with_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn with_day(&self, day: u32) -> Mdf {$/;"	f
with_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_day(&self, day: u32) -> Option<NaiveDate> {$/;"	f
with_day	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_day(&self, day: u32) -> Option<NaiveDateTime> {$/;"	f
with_day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_day0(&self, day0: u32) -> Option<Date<Tz>> {$/;"	f
with_day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_day0(&self, day0: u32) -> Option<DateTime<Tz>> {$/;"	f
with_day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_day0(&self, day0: u32) -> Option<Self>;$/;"	f
with_day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_day0(&self, day0: u32) -> Option<NaiveDate> {$/;"	f
with_day0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_day0(&self, day0: u32) -> Option<NaiveDateTime> {$/;"	f
with_flags	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn with_flags(&self, YearFlags(flags): YearFlags) -> Mdf {$/;"	f
with_flags	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn with_flags(&self, YearFlags(flags): YearFlags) -> Of {$/;"	f
with_formatter	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    pub fn with_formatter(writer: W, formatter: F) -> Self {$/;"	f
with_hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_hour(&self, hour: u32) -> Option<DateTime<Tz>> {$/;"	f
with_hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_hour(&self, hour: u32) -> Option<Self>;$/;"	f
with_hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_hour(&self, hour: u32) -> Option<NaiveDateTime> {$/;"	f
with_hour	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn with_hour(&self, hour: u32) -> Option<NaiveTime> {$/;"	f
with_indent	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    pub fn with_indent(indent: &'a [u8]) -> Self {$/;"	f
with_mdf	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_mdf(&self, mdf: Mdf) -> Option<NaiveDate> {$/;"	f
with_minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_minute(&self, min: u32) -> Option<DateTime<Tz>> {$/;"	f
with_minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_minute(&self, min: u32) -> Option<Self>;$/;"	f
with_minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_minute(&self, min: u32) -> Option<NaiveDateTime> {$/;"	f
with_minute	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn with_minute(&self, min: u32) -> Option<NaiveTime> {$/;"	f
with_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_month(&self, month: u32) -> Option<Date<Tz>> {$/;"	f
with_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_month(&self, month: u32) -> Option<DateTime<Tz>> {$/;"	f
with_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_month(&self, month: u32) -> Option<Self>;$/;"	f
with_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn with_month(&self, month: u32) -> Mdf {$/;"	f
with_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_month(&self, month: u32) -> Option<NaiveDate> {$/;"	f
with_month	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_month(&self, month: u32) -> Option<NaiveDateTime> {$/;"	f
with_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_month0(&self, month0: u32) -> Option<Date<Tz>> {$/;"	f
with_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_month0(&self, month0: u32) -> Option<DateTime<Tz>> {$/;"	f
with_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_month0(&self, month0: u32) -> Option<Self>;$/;"	f
with_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_month0(&self, month0: u32) -> Option<NaiveDate> {$/;"	f
with_month0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_month0(&self, month0: u32) -> Option<NaiveDateTime> {$/;"	f
with_nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_nanosecond(&self, nano: u32) -> Option<DateTime<Tz>> {$/;"	f
with_nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_nanosecond(&self, nano: u32) -> Option<Self>;$/;"	f
with_nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_nanosecond(&self, nano: u32) -> Option<NaiveDateTime> {$/;"	f
with_nanosecond	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn with_nanosecond(&self, nano: u32) -> Option<NaiveTime> {$/;"	f
with_of	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_of(&self, of: Of) -> Option<NaiveDate> {$/;"	f
with_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_ordinal(&self, ordinal: u32) -> Option<Date<Tz>> {$/;"	f
with_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_ordinal(&self, ordinal: u32) -> Option<DateTime<Tz>> {$/;"	f
with_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_ordinal(&self, ordinal: u32) -> Option<Self>;$/;"	f
with_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^        pub fn with_ordinal(&self, ordinal: u32) -> Of {$/;"	f
with_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_ordinal(&self, ordinal: u32) -> Option<NaiveDate> {$/;"	f
with_ordinal	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_ordinal(&self, ordinal: u32) -> Option<NaiveDateTime> {$/;"	f
with_ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_ordinal0(&self, ordinal0: u32) -> Option<Date<Tz>> {$/;"	f
with_ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_ordinal0(&self, ordinal0: u32) -> Option<DateTime<Tz>> {$/;"	f
with_ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_ordinal0(&self, ordinal0: u32) -> Option<Self>;$/;"	f
with_ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_ordinal0(&self, ordinal0: u32) -> Option<NaiveDate> {$/;"	f
with_ordinal0	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_ordinal0(&self, ordinal0: u32) -> Option<NaiveDateTime> {$/;"	f
with_second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_second(&self, sec: u32) -> Option<DateTime<Tz>> {$/;"	f
with_second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_second(&self, sec: u32) -> Option<Self>;$/;"	f
with_second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_second(&self, sec: u32) -> Option<NaiveDateTime> {$/;"	f
with_second	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/time.rs	/^    fn with_second(&self, sec: u32) -> Option<NaiveTime> {$/;"	f
with_timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    pub fn with_timezone<Tz2: TimeZone>(&self, tz: &Tz2) -> Date<Tz2> {$/;"	f
with_timezone	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    pub fn with_timezone<Tz2: TimeZone>(&self, tz: &Tz2) -> DateTime<Tz2> {$/;"	f
with_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/date.rs	/^    fn with_year(&self, year: i32) -> Option<Date<Tz>> {$/;"	f
with_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/datetime.rs	/^    fn with_year(&self, year: i32) -> Option<DateTime<Tz>> {$/;"	f
with_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn with_year(&self, year: i32) -> Option<Self>;$/;"	f
with_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn with_year(&self, year: i32) -> Option<NaiveDate> {$/;"	f
with_year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn with_year(&self, year: i32) -> Option<NaiveDateTime> {$/;"	f
write	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/value.rs	/^    fn write(&mut self, buf: &[u8]) -> io::Result<usize> {$/;"	f
write_bool	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_bool<W: ?Sized>(&mut self, writer: &mut W, value: bool) -> Result<()>$/;"	f
write_char_escape	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_char_escape<W: ?Sized>(&mut self, writer: &mut W, char_escape: CharEscape) -> Result<()>$/;"	f
write_f32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_f32<W: ?Sized>(&mut self, writer: &mut W, value: f32) -> Result<()>$/;"	f
write_f64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_f64<W: ?Sized>(&mut self, writer: &mut W, value: f64) -> Result<()>$/;"	f
write_i16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_i16<W: ?Sized>(&mut self, writer: &mut W, value: i16) -> Result<()>$/;"	f
write_i32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_i32<W: ?Sized>(&mut self, writer: &mut W, value: i32) -> Result<()>$/;"	f
write_i64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_i64<W: ?Sized>(&mut self, writer: &mut W, value: i64) -> Result<()>$/;"	f
write_i8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_i8<W: ?Sized>(&mut self, writer: &mut W, value: i8) -> Result<()>$/;"	f
write_local_minus_utc	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/format/mod.rs	/^                fn write_local_minus_utc(w: &mut fmt::Formatter, off: FixedOffset,$/;"	f
write_null	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_null<W: ?Sized>(&mut self, writer: &mut W) -> Result<()>$/;"	f
write_string_fragment	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_string_fragment<W: ?Sized>(&mut self, writer: &mut W, fragment: &[u8]) -> Result<()>$/;"	f
write_u16	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_u16<W: ?Sized>(&mut self, writer: &mut W, value: u16) -> Result<()>$/;"	f
write_u32	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_u32<W: ?Sized>(&mut self, writer: &mut W, value: u32) -> Result<()>$/;"	f
write_u64	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_u64<W: ?Sized>(&mut self, writer: &mut W, value: u64) -> Result<()>$/;"	f
write_u8	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-0.9.6/src/ser.rs	/^    fn write_u8<W: ?Sized>(&mut self, writer: &mut W, value: u8) -> Result<()>$/;"	f
yday	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/sys.rs	/^        fn yday(year: i32, month: i32, day: i32) -> i32 {$/;"	f
year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn year(&self) -> i32;$/;"	f
year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    fn year(&self) -> i32 {$/;"	f
year	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/datetime.rs	/^    fn year(&self) -> i32 {$/;"	f
year_ce	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/lib.rs	/^    fn year_ce(&self) -> (bool, u32) {$/;"	f
ymd	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn ymd(&self, year: i32, month: u32, day: u32) -> Date<Self> {$/;"	f
ymd_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn ymd_opt(&self, year: i32, month: u32, day: u32) -> LocalResult<Date<Self>> {$/;"	f
yo	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn yo(&self, year: i32, ordinal: u32) -> Date<Self> {$/;"	f
yo_opt	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/offset/mod.rs	/^    fn yo_opt(&self, year: i32, ordinal: u32) -> LocalResult<Date<Self>> {$/;"	f
yo_to_cycle	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.3.0/src/naive/date.rs	/^    pub fn yo_to_cycle(year_mod_400: u32, ordinal: u32) -> u32 {$/;"	f
zero	/home/dpc/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.36/src/duration.rs	/^    pub fn zero() -> Duration {$/;"	f