select 0.5.0

A library to extract useful data from HTML documents, suitable for web scraping.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
<!DOCTYPE html>
<html itemscope itemtype="http://schema.org/QAPage">
<head>

<title>Highest Voted &#39;rust&#39; Questions - Stack Overflow</title>
    <link rel="shortcut icon" href="//cdn.sstatic.net/stackoverflow/img/favicon.ico?v=6cd6089ee7f6">
    <link rel="apple-touch-icon image_src" href="//cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png?v=41f6e13ade69">
    <link rel="search" type="application/opensearchdescription+xml" title="Stack Overflow" href="/opensearch.xml">
    <meta name="twitter:card" content="summary">
    <meta name="twitter:domain" content="stackoverflow.com"/>
    <meta property="og:type" content="website" />
    <meta property="og:image" itemprop="image primaryImageOfPage" content="http://cdn.sstatic.net/stackoverflow/img/apple-touch-icon@2.png?v=ea71a5211a91&a" />
    <meta name="twitter:title" property="og:title" itemprop="title name" content="Highest Voted &amp;#39;rust&amp;#39; Questions" />
    <meta name="twitter:description" property="og:description" itemprop="description" content="Q&amp;A for professional and enthusiast programmers" />
    <meta property="og:url" content="http://stackoverflow.com/questions/tagged/rust?sort=votes&amp;pageSize=50"/>

    
    
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script src="//cdn.sstatic.net/Js/stub.en.js?v=413333d2cb4e"></script>
    <link rel="stylesheet" type="text/css" href="//cdn.sstatic.net/stackoverflow/all.css?v=0b5ca56b8f06">

            <link rel="alternate" type="application/atom+xml" title="highest voted rust questions feed" href="/feeds/tag?tagnames=rust&amp;sort=votes" />


    <script>
        StackExchange.init({"locale":"en","stackAuthUrl":"https://stackauth.com","serverTime":1439213444,"networkMetaHostname":"meta.stackexchange.com","routeName":"Questions/ListByTag","styleCode":true,"enableUserHovercards":true,"snippets":{"enabled":true,"domain":"stacksnippets.net"},"site":{"name":"Stack Overflow","description":"Q&A for professional and enthusiast programmers","isNoticesTabEnabled":true,"recaptchaPublicKey":"6LdchgIAAAAAAJwGpIzRQSOFaO0pU6s44Xt8aTwc","recaptchaAudioLang":"en","enableNewTagCreationWarning":true,"insertSpaceAfterNameTabCompletion":false,"globalAuthDisabled":true,"nonAsciiTags":true,"enableSocialMediaInSharePopup":true},"user":{"fkey":"ed374b372dc7e2f1cf1e3c5212d4732d","isAnonymous":true}});
        StackExchange.using.setCacheBreakers({"js/prettify-full.en.js":"0c289167cd82","js/moderator.en.js":"ddc6dce7f8a9","js/full-anon.en.js":"fc4b7ce1ed8a","js/full.en.js":"04cdc6a0ba3d","js/wmd.en.js":"d933a1503f7c","js/third-party/jquery.autocomplete.min.js":"e5f01e97f7c3","js/third-party/jquery.autocomplete.min.en.js":"","js/mobile.en.js":"1d9ca5139235","js/help.en.js":"b5f40fd81205","js/tageditor.en.js":"260ae44a356d","js/tageditornew.en.js":"044bbc92636e","js/inline-tag-editing.en.js":"9d7c6b9d01c1","js/revisions.en.js":"6aca57a6c709","js/review.en.js":"63a1d1f5f557","js/tagsuggestions.en.js":"d1ff9b84abe5","js/post-validation.en.js":"05049e5eae8a","js/explore-qlist.en.js":"9c64817b25fa","js/events.en.js":"ef9c91b0c49f","js/keyboard-shortcuts.en.js":"be13c7f674c0","js/external-editor.en.js":"d2e66d99e9b7","js/external-editor.en.js":"d2e66d99e9b7","js/snippet-javascript.en.js":"647d1c96b5a1","js/snippet-javascript-codemirror.en.js":"70db96c8807e"});
        StackExchange.using("gps", function() {
             StackExchange.gps.init(true);
        });
    </script>
    
        <script>
            StackExchange.ready(function () {
                $('#nav-tour').click(function () {
                    StackExchange.using("gps", function() {
                        StackExchange.gps.track("aboutpage.click", { aboutclick_location: "headermain" }, true);
                    });
                });
            });
        </script>
    
    
</head>
<body class="tagged-questions-page new-topbar">
    <noscript><div id="noscript-padding"></div></noscript>
    <div id="notify-container"></div>
    <div id="overlay-header"></div>
    <div id="custom-header"></div>




<div class="topbar">
    <div class="topbar-wrapper">

        <div class="js-topbar-dialog-corral">

<div class="topbar-dialog siteSwitcher-dialog dno">
    <div class="header">
        <h3><a href="//stackoverflow.com">current community</a></h3>
    </div>
    <div class="modal-content current-site-container">
        <ul class="current-site">
                <li>
                        <div class="related-links">
            <a href="http://chat.stackoverflow.com" class="js-gps-track"     data-gps-track="site_switcher.click({ item_type:6 })"
>chat</a>
                    <a href="http://blog.stackoverflow.com" class="js-gps-track"     data-gps-track="site_switcher.click({ item_type:7 })"
>blog</a>
            </div>




    <a href="//stackoverflow.com"
       class="current-site-link site-link js-gps-track"
       data-id="1"
       data-gps-track="
        site_switcher.click({ item_type:3 })">
        <div class="site-icon favicon favicon-stackoverflow" title="Stack Overflow"></div>
        Stack Overflow
    </a>

                </li>
                <li class="related-site">
                        <div class="L-shaped-icon-container">
        <span class="L-shaped-icon"></span>
    </div>

                    



    <a href="http://meta.stackoverflow.com"
       class="site-link js-gps-track"
       data-id="552"
       data-gps-track="
            site.switch({ target_site:552, item_type:3 }),
        site_switcher.click({ item_type:4 })">
        <div class="site-icon favicon favicon-stackoverflowmeta" title="Meta Stack Overflow"></div>
        Meta Stack Overflow
    </a>

                </li>
                            <li class="related-site">
                        <div class="L-shaped-icon-container">
        <span class="L-shaped-icon"></span>
    </div>

                    <a class="site-link js-gps-track"
                       href="//careers.stackoverflow.com?utm_source=stackoverflow.com&amp;utm_medium=site-ui&amp;utm_campaign=multicollider"
                            data-gps-track="site_switcher.click({ item_type:9 })"
>
                        <div class="site-icon favicon favicon-careers" title="Stack Overflow Careers"></div>
                        Stack Overflow Careers
                    </a>
                </li>
        </ul>
    </div>
    
    <div class="header" id="your-communities-header">
        <h3>
your communities        </h3>
            
    </div>
    <div class="modal-content" id="your-communities-section">
            
            <div class="call-to-login">
<a href="https://stackoverflow.com/users/signup?returnurl=http%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2frust%3fsort%3dvotes%26pagesize%3d50" class="login-link js-gps-track"     data-gps-track="site_switcher.click({ item_type:10 })"
>Sign up</a> or <a href="https://stackoverflow.com/users/login?returnurl=http%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2frust%3fsort%3dvotes%26pagesize%3d50" class="login-link js-gps-track"     data-gps-track="site_switcher.click({ item_type:11 })"
>log in</a> to customize your list.
            </div>
    </div>
    
    <div class="header">
        <h3><a href="//stackexchange.com/sites">more stack exchange communities</a></h3>
    </div>
    <div class="modal-content">
            <div class="child-content"></div>
    </div>
</div>
        </div>

        <div class="network-items">

            <a href="//stackexchange.com"
               class="topbar-icon icon-site-switcher yes-hover js-site-switcher-button js-gps-track"
               data-gps-track="site_switcher.show"
               title="A list of all 149 Stack Exchange sites">
                <span class="hidden-text">Stack Exchange</span>
            </a>

        </div>

        <div class="topbar-links">

                <div class="links-container">
                <span class="topbar-menu-links">
                                <a href="https://stackoverflow.com/users/signup?returnurl=http%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2frust%3fsort%3dvotes%26pagesize%3d50" class="login-link">sign up</a>
                                <a href="https://stackoverflow.com/users/login?returnurl=http%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2frust%3fsort%3dvotes%26pagesize%3d50" class="login-link">log in</a>

                        <a href="/tour">tour</a>
                            <a href="#" class="icon-help js-help-button" title="Help Center and other resources">
        help
        <span class="triangle"></span>
    </a>
    <div class="topbar-dialog help-dialog js-help-dialog dno">
        <div class="modal-content">
            <ul>
                                    <li>
                        <a href="/tour" class="js-gps-track" data-gps-track="help_popup.click({ item_type:1 })">
                            Tour
                            <span class="item-summary">
                                Start here for a quick overview of the site
                            </span>
                        </a>
                    </li>
                <li>
                    <a href="/help" class="js-gps-track" data-gps-track="help_popup.click({ item_type:4 })">
                        Help Center
                        <span class="item-summary">
                            Detailed answers to any questions you might have
                        </span>
                    </a>
                </li>
                    <li>
                        <a href="//meta.stackoverflow.com" class="js-gps-track" data-gps-track="help_popup.click({ item_type:2 })">
                            Meta
                            <span class="item-summary">
                                Discuss the workings and policies of this site
                            </span>
                        </a>
                    </li>
            </ul>
        </div>
    </div>

                            <a href="//careers.stackoverflow.com?utm_source=stackoverflow.com&amp;utm_medium=site-ui&amp;utm_campaign=anon-topbar">stack overflow careers</a>
                    </span>
                </div>

            <div class="search-container">
                <form id="search" action="/search" method="get" autocomplete="off">
                    <input name="q" type="text" placeholder="search" value="[rust]" tabindex="1" autocomplete="off" maxlength="240" />
                </form>
            </div>

        </div>
    </div>
</div>
    <script>
        StackExchange.ready(function() { StackExchange.topbar.init(); });
    </script>

    <div class="container">
        <div id="header">
            <br class="cbt">
            <div id="hlogo">
                <a href="/" >
                    Stack Overflow
                </a>
            </div>
            <div id="hmenus">
                <div class="nav mainnavs">
                    <ul>
                        <li class="youarehere"><a id="nav-questions" href="/questions">Questions</a></li>
                        <li><a id="nav-tags" href="/tags">Tags</a></li>
                        <li><a id="nav-users" href="/users">Users</a></li>
                        <li><a id="nav-badges" href="/help/badges">Badges</a></li>
                        <li><a id="nav-unanswered" href="/unanswered">Unanswered</a></li>
                    </ul>
                </div>
                <div class="nav askquestion">
                    <ul>
                        <li>
                            <a id="nav-askquestion"  href="/questions/ask">Ask Question</a>
                        </li>
                    </ul>
                </div>
            </div>
        </div>
        



        <div id="content" class="snippet-hidden">
            

    <div id="mainbar">
        <div class="subheader">
            <h1>Tagged Questions</h1>


<div id="tabs">
        <a href="/tags/rust/info" data-nav-xhref="" title="information about this tag" data-value="">info</a>
        <a href="/questions/tagged/rust?sort=newest&amp;pageSize=50" data-nav-xhref="" title="The most recently asked questions" data-value="newest">newest</a>
        <a href="/questions/tagged/rust?sort=frequent&amp;pageSize=50" data-nav-xhref="" title="Questions with the most links" data-value="frequent">frequent</a>
        <a class="youarehere" href="/questions/tagged/rust?sort=votes&amp;pageSize=50" data-nav-xhref="" title="Questions with the most votes" data-value="votes">votes</a>
        <a href="/questions/tagged/rust?sort=active&amp;pageSize=50" data-nav-xhref="" title="Questions that have recent activity" data-value="active">active</a>
        <a href="/questions/tagged/rust?sort=unanswered&amp;pageSize=50" data-nav-xhref="" title="Questions that have no upvoted answers" data-value="unanswered">unanswered</a>
</div>
        </div>
        <div class="question">
<script>
                var ados = ados || {}; ados.run = ados.run || [];
                ados.run.push(function () { ados_add_placement(22, 8277, "adzerk39955571", 56).setZone(739); });
            </script>
            <div class="everyonelovesstackoverflow" id="adzerk39955571">
            </div>

            <div class="welovestackoverflow" style="margin-top: 10px;">
                <div style="float: left; position: relative; width: 100%">
                        <p>
Rust is a systems programming language focused on three goals: safety, speed, and concurrency. It maintains these goals without needing a garbage collector, making it a useful language for a number of use cases other languages aren't good at: embedding in other languages, programs with specific ...                         </p>
                                            <p style="margin-bottom: 0;">
                            <a title="tag wiki" href="/tags/rust/info">learn more&hellip;</a>
                            <span class="lsep">|</span> 
                            <a title="top answerers and askers in this tag" href="/tags/rust/topusers">top users</a> 
                            <span class="lsep">|</span> 
                            <a title="common, alternate spellings or phrasings for this tag" href="/tags/rust/synonyms">synonyms</a>
                            
                        </p>
                </div>
            </div>

        </div>
        <div id="questions" class="content-padding">
<div class="question-summary" id="question-summary-9350125">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>67</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>8</strong>answers
            </div>
        </div>
        <div class="views hot" title="23,076 views">
    23k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/9350125/applications-and-libraries-written-in-rust" class="question-hyperlink">Applications and libraries written in Rust [closed]</a></h3>
        <div class="excerpt">
            Although Rust is still under heavy development, there should exist examples of applications and libraries at least partially written in Rust. Unfortunately I am unable to find such examples.

...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2012-02-19 14:39:20Z" class="relativetime">Feb 19 '12 at 14:39</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/811773/atom"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/e5fae5b35c0c625157d991b31e113de3?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/811773/atom">Atom</a><br>
        <span class="reputation-score" title="reputation score 11026" dir="ltr">11k</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="41 silver badges"><span class="badge2"></span><span class="badgecount">41</span></span><span title="57 bronze badges"><span class="badge3"></span><span class="badgecount">57</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-15871885">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>52</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>6</strong>answers
            </div>
        </div>
        <div class="views warm" title="9,523 views">
    10k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/15871885/how-to-debug-rust-programs" class="question-hyperlink">How to debug Rust programs? [closed]</a></h3>
        <div class="excerpt">
            How can we debug Rust programs?

        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-04-08 05:30:11Z" class="relativetime">Apr 8 '13 at 5:30</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/40220/macropas"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/d9287234ee8436b5631a8ae3206c6121?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/40220/macropas">macropas</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">1,635</span><span title="12 silver badges"><span class="badge2"></span><span class="badgecount">12</span></span><span title="21 bronze badges"><span class="badge3"></span><span class="badgecount">21</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-15619320">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>51</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>9</strong>answers
            </div>
        </div>
        <div class="views hot" title="10,433 views">
    10k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/15619320/how-to-access-command-line-parameters" class="question-hyperlink">How to access command line parameters?</a></h3>
        <div class="excerpt">
            The rust tutorial does not explain how to take parameters from the command line. fn main() is only shown with an empty parameter list in all examples.

So what is the correct way of accessing command ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-03-25 15:59:30Z" class="relativetime">Mar 25 '13 at 15:59</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/871423/shutefan"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/734ebe218ba5ca723c10d783390bc736?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/871423/shutefan">shutefan</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">660</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="9 silver badges"><span class="badge2"></span><span class="badgecount">9</span></span><span title="15 bronze badges"><span class="badge3"></span><span class="badgecount">15</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-31609137">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>48</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>6</strong>answers
            </div>
        </div>
        <div class="views warm" title="3,915 views">
    4k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/31609137/why-are-explicit-lifetimes-needed-in-rust" class="question-hyperlink">Why are explicit lifetimes needed in Rust?</a></h3>
        <div class="excerpt">
            I was reading the lifetimes chapter of the Rust book, and I came across this example for a named/explicit lifetime:

struct Foo&lt;'a&gt; {
    x: &amp;'a i32,
}

fn main() {
    let x;                ...
        </div>          
        <div class="tags t-pointers t-rust t-static-analysis t-lifetime">
            <a href="/questions/tagged/pointers" class="post-tag" title="show questions tagged &#39;pointers&#39;" rel="tag">pointers</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/static-analysis" class="post-tag" title="show questions tagged &#39;static-analysis&#39;" rel="tag">static-analysis</a> <a href="/questions/tagged/lifetime" class="post-tag" title="show questions tagged &#39;lifetime&#39;" rel="tag">lifetime</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2015-07-24 11:15:06Z" class="relativetime">Jul 24 at 11:15</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/924313/jco"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/14d86d9d0a97d8464d59eb42935838ae?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/924313/jco">jco</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">5,400</span><span title="11 gold badges"><span class="badge1"></span><span class="badgecount">11</span></span><span title="45 silver badges"><span class="badge2"></span><span class="badgecount">45</span></span><span title="114 bronze badges"><span class="badge3"></span><span class="badgecount">114</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-28123453">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>46</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="1,169 views">
    1k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/28123453/what-is-the-difference-between-traits-in-rust-and-typeclasses-in-haskell" class="question-hyperlink">What is the difference between traits in Rust and typeclasses in Haskell?</a></h3>
        <div class="excerpt">
            Traits in Rust seem at least superficially similar to typeclasses in Haskell, however I've seen people write that there are some differences between them. I was wondering exactly what these ...
        </div>          
        <div class="tags t-haskell t-rust">
            <a href="/questions/tagged/haskell" class="post-tag" title="show questions tagged &#39;haskell&#39;" rel="tag">haskell</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-01-24 07:50:44Z" class="relativetime">Jan 24 at 7:50</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/2553416/logicchains"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/3cb1756924bd03cc01d107852dd81acf?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/2553416/logicchains">LogicChains</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">719</span><span title="3 silver badges"><span class="badge2"></span><span class="badgecount">3</span></span><span title="13 bronze badges"><span class="badge3"></span><span class="badgecount">13</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-24158114">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>44</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,301 views">
    4k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/24158114/rust-string-versus-str" class="question-hyperlink">Rust String versus str</a></h3>
        <div class="excerpt">
            I've been awhile from Rust and a new wild type String appeared. So I'm wondering what are the differences? When does one use String instead of str and vice versa? Is one of them getting deprecated?

        </div>          
        <div class="tags t-string t-rust">
            <a href="/questions/tagged/string" class="post-tag" title="show questions tagged &#39;string&#39;" rel="tag">string</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-06-11 08:29:34Z" class="relativetime">Jun 11 '14 at 8:29</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/220485/daniel-fath"><div class="gravatar-wrapper-32"><img src="http://i.stack.imgur.com/bTrsL.jpg?s=32&amp;g=1" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/220485/daniel-fath">Daniel Fath</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">2,507</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="17 silver badges"><span class="badge2"></span><span class="badgecount">17</span></span><span title="42 bronze badges"><span class="badge3"></span><span class="badgecount">42</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-28519997">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>40</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="2,019 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/28519997/what-are-rusts-exact-auto-dereferencing-rules" class="question-hyperlink">What are Rust&#39;s exact auto-dereferencing rules?</a></h3>
        <div class="excerpt">
            I'm learning/experimenting with Rust, and in all the elegance that I find in this language, there is one peculiarity that baffles me and seems totally out of place.

Rust automatically dereferences ...
        </div>          
        <div class="tags t-pointers t-reference t-rust t-dereference t-formal-semantics">
            <a href="/questions/tagged/pointers" class="post-tag" title="show questions tagged &#39;pointers&#39;" rel="tag">pointers</a> <a href="/questions/tagged/reference" class="post-tag" title="show questions tagged &#39;reference&#39;" rel="tag">reference</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/dereference" class="post-tag" title="show questions tagged &#39;dereference&#39;" rel="tag">dereference</a> <a href="/questions/tagged/formal-semantics" class="post-tag" title="show questions tagged &#39;formal-semantics&#39;" rel="tag">formal-semantics</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-02-14 20:31:55Z" class="relativetime">Feb 14 at 20:31</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/403742/kfyatek"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/a75da0019ec1c94350b0c334d2269823?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/403742/kfyatek">kFYatek</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">278</span><span title="2 silver badges"><span class="badge2"></span><span class="badgecount">2</span></span><span title="8 bronze badges"><span class="badge3"></span><span class="badgecount">8</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-3210025">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>36</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,389 views">
    4k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/3210025/what-is-typestate" class="question-hyperlink">What is typestate?</a></h3>
        <div class="excerpt">
            What does TypeState refer to in respect to language design?  I saw it mentioned in some discussions regarding a new language by mozilla called Rust.

        </div>          
        <div class="tags t-rust t-language-design t-rust-obsolete">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/language-design" class="post-tag" title="show questions tagged &#39;language-design&#39;" rel="tag">language-design</a> <a href="/questions/tagged/rust-obsolete" class="post-tag" title="show questions tagged &#39;rust-obsolete&#39;" rel="tag">rust-obsolete</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2010-07-09 05:22:09Z" class="relativetime">Jul 9 '10 at 5:22</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/42323/brad-the-app-guy"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/c0a2efb82fa44007b2f46b8c14e0723e?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/42323/brad-the-app-guy">Brad The App Guy</a><br>
        <span class="reputation-score" title="reputation score 14314" dir="ltr">14.3k</span><span title="2 gold badges"><span class="badge1"></span><span class="badgecount">2</span></span><span title="29 silver badges"><span class="badge2"></span><span class="badgecount">29</span></span><span title="54 bronze badges"><span class="badge3"></span><span class="badgecount">54</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-24253344">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>34</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="6,138 views">
    6k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/24253344/move-vs-copy-in-rust" class="question-hyperlink">Move vs Copy in Rust</a></h3>
        <div class="excerpt">
            Let's say I have this struct

struct Triplet {
    one: int,
    two: int,
    three: int,
}


If I pass this to a function it is implicitly copied. Now sometimes I read that some values are not ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2014-06-16 22:47:05Z" class="relativetime">Jun 16 '14 at 22:47</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/288703/christoph"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/1bb69b75c5e73a7c9f4ebbc4835d622f?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/288703/christoph">Christoph</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">6,309</span><span title="5 gold badges"><span class="badge1"></span><span class="badgecount">5</span></span><span title="37 silver badges"><span class="badge2"></span><span class="badgecount">37</span></span><span title="70 bronze badges"><span class="badge3"></span><span class="badgecount">70</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-20921988">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>33</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="1,432 views">
    1k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/20921988/running-boehm-gc-in-multiple-threads-independently" class="question-hyperlink">Running Boehm GC in multiple threads independently</a></h3>
        <div class="excerpt">
            I'm experimenting with writing some bindings to the Boehm GC for Rust.

Some background: Rust is designed to be a high-concurrent language, and a result of this design is having the ability to ...
        </div>          
        <div class="tags t-c t-multithreading t-garbage-collection t-rust t-boehm-gc">
            <a href="/questions/tagged/c" class="post-tag" title="show questions tagged &#39;c&#39;" rel="tag">c</a> <a href="/questions/tagged/multithreading" class="post-tag" title="show questions tagged &#39;multithreading&#39;" rel="tag">multithreading</a> <a href="/questions/tagged/garbage-collection" class="post-tag" title="show questions tagged &#39;garbage-collection&#39;" rel="tag">garbage-collection</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/boehm-gc" class="post-tag" title="show questions tagged &#39;boehm-gc&#39;" rel="tag">boehm-gc</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2014-01-04 14:06:33Z" class="relativetime">Jan 4 '14 at 14:06</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1256624/huon-dbaupp"><div class="gravatar-wrapper-32"><img src="http://i.stack.imgur.com/EdJaa.jpg?s=32&amp;g=1" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1256624/huon-dbaupp">huon-dbaupp</a><br>
        <span class="reputation-score" title="reputation score 31109" dir="ltr">31.1k</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="58 silver badges"><span class="badge2"></span><span class="badgecount">58</span></span><span title="103 bronze badges"><span class="badge3"></span><span class="badgecount">103</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-17696798">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>32</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>7</strong>answers
            </div>
        </div>
        <div class="views hot" title="13,754 views">
    14k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/17696798/rust-web-frameworks" class="question-hyperlink">Rust Web Frameworks [closed]</a></h3>
        <div class="excerpt">
            
  The goal of Rust is to be a good language for the creation of large client and server programs that run over the Internet. Rust description on wikipedia


I was looking for web frameworks for rust, ...
        </div>          
        <div class="tags t-webserver t-web-frameworks t-rust">
            <a href="/questions/tagged/webserver" class="post-tag" title="show questions tagged &#39;webserver&#39;" rel="tag">webserver</a> <a href="/questions/tagged/web-frameworks" class="post-tag" title="show questions tagged &#39;web-frameworks&#39;" rel="tag">web-frameworks</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2013-07-17 10:01:43Z" class="relativetime">Jul 17 '13 at 10:01</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/656804/nikolay-fominyh"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/b4a805577a0117e80254f3cc530a1769?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/656804/nikolay-fominyh">Nikolay Fominyh</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">3,544</span><span title="2 gold badges"><span class="badge1"></span><span class="badgecount">2</span></span><span title="24 silver badges"><span class="badge2"></span><span class="badgecount">24</span></span><span title="63 bronze badges"><span class="badge3"></span><span class="badgecount">63</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-21747136">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>25</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,688 views">
    5k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/21747136/how-do-i-print-the-type-of-a-variable-in-rust" class="question-hyperlink">How do I print the type of a variable in Rust?</a></h3>
        <div class="excerpt">
            I have this code snippet:

let mut my_number=32.90;


I need to know the type of my_number. Using type and type_of did not work; is there any other way I can print the number's type?

        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-02-13 06:49:09Z" class="relativetime">Feb 13 '14 at 6:49</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/2431012/user2431012"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/e0dfc86677992fe505804698d7618d1b?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/2431012/user2431012">user2431012</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">129</span><span title="2 silver badges"><span class="badge2"></span><span class="badgecount">2</span></span><span title="6 bronze badges"><span class="badge3"></span><span class="badgecount">6</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-25106554">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>24</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="1,994 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/25106554/println-doesnt-work-in-rust-unit-tests" class="question-hyperlink">println! doesn&#39;t work in rust unit tests?</a></h3>
        <div class="excerpt">
            I'm using rust 0.11 and implemented the following method and unit test:

    fn read_file(path: &amp;Path) {
        /*
        let mut file = BufferedReader::new(File::open(path));
        for line ...
        </div>          
        <div class="tags t-rust t-println">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/println" class="post-tag" title="show questions tagged &#39;println&#39;" rel="tag">println</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-08-03 16:10:50Z" class="relativetime">Aug 3 '14 at 16:10</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/70600/ruipacheco"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/6123be50f7a10302e7bf59dcdc5e2623?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/70600/ruipacheco">ruipacheco</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">1,402</span><span title="2 gold badges"><span class="badge1"></span><span class="badgecount">2</span></span><span title="20 silver badges"><span class="badge2"></span><span class="badgecount">20</span></span><span title="45 bronze badges"><span class="badge3"></span><span class="badgecount">45</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-16504643">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>23</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="2,499 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/16504643/what-is-the-overhead-of-rusts-option-type" class="question-hyperlink">What is the overhead of Rust&#39;s Option type?</a></h3>
        <div class="excerpt">
            In Rust, pointers can never be null, so in case where you actually need null, such as a linked list, you use the Option type:

struct element {
    value: int,
    next: Option&lt;~element&gt;,
}


...
        </div>          
        <div class="tags t-performance t-rust t-null-pointer">
            <a href="/questions/tagged/performance" class="post-tag" title="show questions tagged &#39;performance&#39;" rel="tag">performance</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/null-pointer" class="post-tag" title="show questions tagged &#39;null-pointer&#39;" rel="tag">null-pointer</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-05-12 05:59:23Z" class="relativetime">May 12 '13 at 5:59</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/14955/thilo"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/9e4bd5fb6ac1cdc931bac60216a7aaf2?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/14955/thilo">Thilo</a><br>
        <span class="reputation-score" title="reputation score 132082" dir="ltr">132k</span><span title="46 gold badges"><span class="badge1"></span><span class="badgecount">46</span></span><span title="278 silver badges"><span class="badge2"></span><span class="badgecount">278</span></span><span title="420 bronze badges"><span class="badge3"></span><span class="badgecount">420</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-22243527">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>22</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="4,569 views">
    5k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/22243527/how-do-you-implement-a-custom-fmtdebug-trait-in-rust" class="question-hyperlink">How do you implement a custom &#39;fmt::Debug&#39; trait in rust?</a></h3>
        <div class="excerpt">
            I presume you do something like this:

use uuid::Uuid;
use std::fmt::Formatter;
use std::fmt::Debug;

#[deriving(Debug)]
struct BlahLF {
  id: Uuid
}

impl BlahLF {
  fn new() -&gt; ~BlahLF {
      ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-03-07 06:52:44Z" class="relativetime">Mar 7 '14 at 6:52</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/353820/doug"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/32b29e1dc23c2c5abe0283ab7b9541d3?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/353820/doug">Doug</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">4,278</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="31 silver badges"><span class="badge2"></span><span class="badgecount">31</span></span><span title="61 bronze badges"><span class="badge3"></span><span class="badgecount">61</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-21257686">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>21</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="5,580 views">
    6k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/21257686/what-is-this-unwrap-thing-sometimes-its-unwrap-sometimes-unwrap-or" class="question-hyperlink">What is this unwrap thing: sometimes it&#39;s unwrap sometimes unwrap_or</a></h3>
        <div class="excerpt">
            Google doesn't returns any good results.

I've encountered it reading http://www.rustforrubyists.com/book/book.html i.e.

let mut reader = BufferedReader::new(io::stdin());
let input = ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-01-21 12:06:08Z" class="relativetime">Jan 21 '14 at 12:06</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/588759/rofrol"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/216ea4da5cae7be4030b6242ab90631c?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/588759/rofrol">rofrol</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">790</span><span title="8 silver badges"><span class="badge2"></span><span class="badgecount">8</span></span><span title="16 bronze badges"><span class="badge3"></span><span class="badgecount">16</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-17490716">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>21</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="4,525 views">
    5k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/17490716/lifetimes-in-rust" class="question-hyperlink">Lifetimes in Rust</a></h3>
        <div class="excerpt">
            Occasionally I've found myself wanting to write functions that can be called in either of two ways:

// With a string literal:
let lines = read_file_lines("data.txt");

// With a string pointer:
let ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-07-05 14:00:43Z" class="relativetime">Jul 5 '13 at 14:00</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/259747/daniel"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/47073ed4b1e112a835879701dc706fad?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/259747/daniel">Daniel</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">4,946</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="19 silver badges"><span class="badge2"></span><span class="badgecount">19</span></span><span title="51 bronze badges"><span class="badge3"></span><span class="badgecount">51</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-14189604">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>19</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="1,615 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/14189604/what-is-monomorphisation-with-context-to-c" class="question-hyperlink">What is monomorphisation with context to C++?</a></h3>
        <div class="excerpt">
            Dave Herman's recent talk in Rust said that they borrowed this property from C++. I couldn't find anything around the topic. Can somebody please explain what monomorphisation means?

        </div>          
        <div class="tags t-cçç t-rust">
            <a href="/questions/tagged/c%2b%2b" class="post-tag" title="show questions tagged &#39;c++&#39;" rel="tag">c++</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-01-07 03:47:12Z" class="relativetime">Jan 7 '13 at 3:47</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/82368/unj2"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/954ea2f3eddf44343abc116897ce47c3?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/82368/unj2">unj2</a><br>
        <span class="reputation-score" title="reputation score 11407" dir="ltr">11.4k</span><span title="42 gold badges"><span class="badge1"></span><span class="badgecount">42</span></span><span title="153 silver badges"><span class="badge2"></span><span class="badgecount">153</span></span><span title="286 bronze badges"><span class="badge3"></span><span class="badgecount">286</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-15379408">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>17</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="2,933 views">
    3k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/15379408/how-do-i-transform-str-to-str-in-rust" class="question-hyperlink">How do I transform &amp;str to ~str in Rust?</a></h3>
        <div class="excerpt">
            This is for the current 0.6 Rust trunk by the way, not sure the exact commit.

Let's say I want to for each over some strings, and my closure takes a borrowed string pointer argument (&amp;str). I ...
        </div>          
        <div class="tags t-string t-pointers t-rust">
            <a href="/questions/tagged/string" class="post-tag" title="show questions tagged &#39;string&#39;" rel="tag">string</a> <a href="/questions/tagged/pointers" class="post-tag" title="show questions tagged &#39;pointers&#39;" rel="tag">pointers</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-03-13 07:35:23Z" class="relativetime">Mar 13 '13 at 7:35</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/122396/ross"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/12076a394d741582947a3fba59e09202?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/122396/ross">Ross</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">683</span><span title="7 silver badges"><span class="badge2"></span><span class="badgecount">7</span></span><span title="17 bronze badges"><span class="badge3"></span><span class="badgecount">17</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-13579266">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>16</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>5</strong>answers
            </div>
        </div>
        <div class="views warm" title="8,550 views">
    9k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/13579266/how-to-read-user-input-in-rust" class="question-hyperlink">How to Read User Input in Rust?</a></h3>
        <div class="excerpt">
            I'm wondering how to read user input in Rust.

I intend to make a tokenizer, so first thing I need is to read every single line the user types and stops reading once the user presses &lt;ctrl-D&gt;

I ...
        </div>          
        <div class="tags t-input t-io t-rust">
            <a href="/questions/tagged/input" class="post-tag" title="show questions tagged &#39;input&#39;" rel="tag">input</a> <a href="/questions/tagged/io" class="post-tag" title="show questions tagged &#39;io&#39;" rel="tag">io</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2012-11-27 07:23:23Z" class="relativetime">Nov 27 '12 at 7:23</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/690061/beyondsora"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/2aa0c6735cd7fd6285a009556e8f764f?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/690061/beyondsora">BeyondSora</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">1,250</span><span title="10 silver badges"><span class="badge2"></span><span class="badgecount">10</span></span><span title="21 bronze badges"><span class="badge3"></span><span class="badgecount">21</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-14154753">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>16</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,726 views">
    5k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/14154753/how-do-i-make-an-http-request-from-rust" class="question-hyperlink">How do I make an HTTP request from Rust?</a></h3>
        <div class="excerpt">
            How can I make an HTTP request from Rust? I can't seem to find anything in the core library.

I don't need to parse the output, just make a request and check the HTTP response code.

Bonus marks if ...
        </div>          
        <div class="tags t-http t-rust">
            <a href="/questions/tagged/http" class="post-tag" title="show questions tagged &#39;http&#39;" rel="tag">http</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2013-01-04 09:50:32Z" class="relativetime">Jan 4 '13 at 9:50</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/255627/alex-dean"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/9653cf0f270b28e4cbf9fc6019521677?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/255627/alex-dean">Alex Dean</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">5,382</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="38 silver badges"><span class="badge2"></span><span class="badgecount">38</span></span><span title="60 bronze badges"><span class="badge3"></span><span class="badgecount">60</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-23781124">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>16</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="1,895 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/23781124/can-rust-library-be-used-from-another-languages-in-a-way-c-libraries-do" class="question-hyperlink">Can rust library be used from another languages in a way c libraries do?</a></h3>
        <div class="excerpt">
            Writing such library will I have to sacrifice std? How, for example, will do I write python bindings to rust library, if possible? 

        </div>          
        <div class="tags t-dll t-rust t-shared-libraries">
            <a href="/questions/tagged/dll" class="post-tag" title="show questions tagged &#39;dll&#39;" rel="tag">dll</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/shared-libraries" class="post-tag" title="show questions tagged &#39;shared-libraries&#39;" rel="tag">shared-libraries</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-05-21 10:52:39Z" class="relativetime">May 21 '14 at 10:52</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1215031/moonwalker"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/6ae3697b2cf910eb587338b46daf7856?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1215031/moonwalker">Moonwalker</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">530</span><span title="9 silver badges"><span class="badge2"></span><span class="badgecount">9</span></span><span title="28 bronze badges"><span class="badge3"></span><span class="badgecount">28</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-4419433">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>16</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,642 views">
    5k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/4419433/any-one-tried-mozillas-programming-language-rust-yet" class="question-hyperlink">any one tried Mozilla&#39;s programming language Rust Yet? [closed]</a></h3>
        <div class="excerpt">
            Mozilla is designing a new programming language called Rust , has anyone give it a try?

what makes it different from other programming languages like C# 

if someone gave it a try tell us what you ...
        </div>          
        <div class="tags t-programming-languages t-mozilla t-rust">
            <a href="/questions/tagged/programming-languages" class="post-tag" title="show questions tagged &#39;programming-languages&#39;" rel="tag">programming-languages</a> <a href="/questions/tagged/mozilla" class="post-tag" title="show questions tagged &#39;mozilla&#39;" rel="tag">mozilla</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2010-12-11 22:57:05Z" class="relativetime">Dec 11 '10 at 22:57</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/536448/saif-al-harthi"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/181371ee6935873b6b822a85303db5b9?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/536448/saif-al-harthi">Saif al Harthi</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">2,254</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="10 silver badges"><span class="badge2"></span><span class="badgecount">10</span></span><span title="20 bronze badges"><span class="badge3"></span><span class="badgecount">20</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-18374612">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>16</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,713 views">
    5k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/18374612/does-will-rust-support-functional-programming-idioms" class="question-hyperlink">Does/Will Rust support functional programming idioms?</a></h3>
        <div class="excerpt">
            As Rust gets fleshed out more and more, my interest in it begins to pique.
I love the fact that it supports algebraic data types and in particular matching of those,
but are there any thoughts made on ...
        </div>          
        <div class="tags t-functional-programming t-rust">
            <a href="/questions/tagged/functional-programming" class="post-tag" title="show questions tagged &#39;functional-programming&#39;" rel="tag">functional-programming</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-08-22 07:52:10Z" class="relativetime">Aug 22 '13 at 7:52</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/388010/sebastian"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/f6c6f0feb5cb53e7023d5d9ecc443767?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/388010/sebastian">Sebastian</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">580</span><span title="7 silver badges"><span class="badge2"></span><span class="badgecount">7</span></span><span title="20 bronze badges"><span class="badge3"></span><span class="badgecount">20</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-26212397">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>15</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="1,972 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/26212397/references-to-traits-in-structs" class="question-hyperlink">References to traits in structs</a></h3>
        <div class="excerpt">
            Lets say I have a trait Foo

pub trait Foo {
   fn do_something(&amp;self) -&gt; f64;
}


and a struct which references that trait

pub struct Bar {
   foo : Foo,
}


Trying to compile I get

error: ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-10-06 08:25:47Z" class="relativetime">Oct 6 '14 at 8:25</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/825320/neil-danson"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/eed628ac0ac2c3b640b098fc4af7af5c?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/825320/neil-danson">neil danson</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">282</span><span title="1 silver badge"><span class="badge2"></span><span class="badgecount">1</span></span><span title="9 bronze badges"><span class="badge3"></span><span class="badgecount">9</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-9271970">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>15</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>5</strong>answers
            </div>
        </div>
        <div class="views warm" title="8,579 views">
    9k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/9271970/how-do-you-make-a-range-in-rust" class="question-hyperlink">How do you make a range in Rust?</a></h3>
        <div class="excerpt">
            The docs don't say how, and the tutorial completely ignores for loops.

        </div>          
        <div class="tags t-loops t-for-loop t-range t-rust">
            <a href="/questions/tagged/loops" class="post-tag" title="show questions tagged &#39;loops&#39;" rel="tag">loops</a> <a href="/questions/tagged/for-loop" class="post-tag" title="show questions tagged &#39;for-loop&#39;" rel="tag">for-loop</a> <a href="/questions/tagged/range" class="post-tag" title="show questions tagged &#39;range&#39;" rel="tag">range</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2012-02-14 05:03:32Z" class="relativetime">Feb 14 '12 at 5:03</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/350106/mcandre"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/dfe88469b75efc87cbcbbbc2a975850a?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/350106/mcandre">mcandre</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">7,990</span><span title="4 gold badges"><span class="badge1"></span><span class="badgecount">4</span></span><span title="36 silver badges"><span class="badge2"></span><span class="badgecount">36</span></span><span title="75 bronze badges"><span class="badge3"></span><span class="badgecount">75</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-30467085">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>15</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views " title="236 views">
    236 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/30467085/how-to-iterate-over-an-array" class="question-hyperlink">How to Iterate Over an Array?</a></h3>
        <div class="excerpt">
            I'm new to Rust and I'm trying to write a program that involves filtering and folding over arrays. I've been using TRPL as a reference, but I don't understand what happens when I form iterators over ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-05-26 19:19:12Z" class="relativetime">May 26 at 19:19</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/3834754/willengler"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/c8749cd6261f1c0b80d0afba519cdd2b?s=32&amp;d=identicon&amp;r=PG&amp;f=1" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/3834754/willengler">WillEngler</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">85</span><span title="1 silver badge"><span class="badge2"></span><span class="badgecount">1</span></span><span title="5 bronze badges"><span class="badge3"></span><span class="badgecount">5</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-27999559">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>15</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views " title="307 views">
    307 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/27999559/can-libraries-be-distributed-as-a-binary-so-the-end-user-cannot-see-the-source" class="question-hyperlink">Can libraries be distributed as a binary, so the end user cannot see the source code?</a></h3>
        <div class="excerpt">
            Is it possible to compile a Rust library crate so that the user can't see the source code but can still use the library?

If it is, are all the generics provided as "Source code" or some IR, or does ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-01-17 12:41:02Z" class="relativetime">Jan 17 at 12:41</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/506962/j-v"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/72d17716d70c471dead0bd8c6c8e15f8?s=32&amp;d=identicon&amp;r=PG&amp;f=1" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/506962/j-v">J V</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">3,463</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="15 silver badges"><span class="badge2"></span><span class="badgecount">15</span></span><span title="27 bronze badges"><span class="badge3"></span><span class="badgecount">27</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-19650265">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>15</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="3,466 views">
    3k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/19650265/using-rust-is-there-a-faster-shorter-way-to-initialize-variables-in-a-struct" class="question-hyperlink">Using Rust, is there a faster/shorter way to initialize variables in a struct?</a></h3>
        <div class="excerpt">
            In the following example, I would much prefer to assign a value to each field in the struct in the declaration of the fields. Alternatively, it effectively takes one additional statement for each ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-10-29 05:21:31Z" class="relativetime">Oct 29 '13 at 5:21</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1949390/brian-oh"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/64cd775c51fc47067f0d133544385691?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1949390/brian-oh">Brian Oh</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">983</span><span title="11 silver badges"><span class="badge2"></span><span class="badgecount">11</span></span><span title="23 bronze badges"><span class="badge3"></span><span class="badgecount">23</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-30757914">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>15</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views " title="137 views">
    137 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/30757914/can-i-mark-a-function-as-deprecated" class="question-hyperlink">Can I mark a function as deprecated?</a></h3>
        <div class="excerpt">
            I'd like to mark functions/methods as deprecated.  I tried to apply the deprecated attribute:

#[deprecated]
fn old_way_of_doing_it() {


but this yields an error:


error: stability attributes may ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2015-06-10 13:32:40Z" class="relativetime">Jun 10 at 13:32</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/2556117/fraser"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/cde5c1d8e38358013a16a3f7a686ae87?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/2556117/fraser">Fraser</a><br>
        <span class="reputation-score" title="reputation score 27100" dir="ltr">27.1k</span><span title="5 gold badges"><span class="badge1"></span><span class="badgecount">5</span></span><span title="63 silver badges"><span class="badge2"></span><span class="badgecount">63</span></span><span title="93 bronze badges"><span class="badge3"></span><span class="badgecount">93</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-24145823">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>14</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="2,343 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/24145823/rust-ffi-c-string-handling" class="question-hyperlink">Rust FFI C string handling</a></h3>
        <div class="excerpt">
            I'm playing around a bit with the Rust FFI, and now I'm trying to get a C string returned by a C library, and convert it to a Rust string.

My code:

mylib.c

const char* hello(){
    return "Hello ...
        </div>          
        <div class="tags t-c t-ffi t-rust">
            <a href="/questions/tagged/c" class="post-tag" title="show questions tagged &#39;c&#39;" rel="tag">c</a> <a href="/questions/tagged/ffi" class="post-tag" title="show questions tagged &#39;ffi&#39;" rel="tag">ffi</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-06-10 16:07:45Z" class="relativetime">Jun 10 '14 at 16:07</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1833511/dirk"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/ab0c9cc3bb28498a3e83e5862ab2f5b4?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1833511/dirk">Dirk</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">465</span><span title="6 silver badges"><span class="badge2"></span><span class="badgecount">6</span></span><span title="17 bronze badges"><span class="badge3"></span><span class="badgecount">17</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-19076719">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>14</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="7,650 views">
    8k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/19076719/how-do-i-convert-a-vector-of-bytes-u8-to-a-string-in-rust" class="question-hyperlink">How do I convert a Vector of bytes (u8) to a string in Rust?</a></h3>
        <div class="excerpt">
            I am trying to write simple TCP/IP client in Rust and I need to print out my buffer I got from the server. How do I convert the u8 vector to a String for printing?

        </div>          
        <div class="tags t-string t-vector t-rust">
            <a href="/questions/tagged/string" class="post-tag" title="show questions tagged &#39;string&#39;" rel="tag">string</a> <a href="/questions/tagged/vector" class="post-tag" title="show questions tagged &#39;vector&#39;" rel="tag">vector</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-09-29 10:03:36Z" class="relativetime">Sep 29 '13 at 10:03</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/677701/athabaska-dick"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/6b9ae7c8cce61ad4d5de0b3fb2c9145b?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/677701/athabaska-dick">Athabaska Dick</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">994</span><span title="8 silver badges"><span class="badge2"></span><span class="badgecount">8</span></span><span title="16 bronze badges"><span class="badge3"></span><span class="badgecount">16</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-30984688">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>14</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views " title="193 views">
    193 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/30984688/convert-rust-vector-of-tuples-to-a-c-compatible-structure" class="question-hyperlink">Convert Rust vector of tuples to a C compatible structure</a></h3>
        <div class="excerpt">
            Following these answers, I've currently defined a Rust 1.0 function as follows, in order to be callable from Python using ctypes:

use std::vec;

extern crate libc;
use libc::{c_int, c_float, size_t};
...
        </div>          
        <div class="tags t-python t-rust t-ctypes">
            <a href="/questions/tagged/python" class="post-tag" title="show questions tagged &#39;python&#39;" rel="tag">python</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/ctypes" class="post-tag" title="show questions tagged &#39;ctypes&#39;" rel="tag">ctypes</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-06-22 16:03:57Z" class="relativetime">Jun 22 at 16:03</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/416626/urschrei"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/ad98b7aa615718b4a2446d12af86be73?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/416626/urschrei">urschrei</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">6,222</span><span title="4 gold badges"><span class="badge1"></span><span class="badgecount">4</span></span><span title="16 silver badges"><span class="badge2"></span><span class="badgecount">16</span></span><span title="36 bronze badges"><span class="badge3"></span><span class="badgecount">36</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-19605132">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>14</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="5,792 views">
    6k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/19605132/is-it-possible-to-use-global-variables-in-rust" class="question-hyperlink">Is it possible to use global-variables in Rust?</a></h3>
        <div class="excerpt">
            I know that in-general global-variables are to be avoided. Nevertheless, I think in a practical sense, it is sometimes desirable (in situations where the variable is integral to the program) to use ...
        </div>          
        <div class="tags t-global-variables t-rust">
            <a href="/questions/tagged/global-variables" class="post-tag" title="show questions tagged &#39;global-variables&#39;" rel="tag">global-variables</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-10-26 09:39:45Z" class="relativetime">Oct 26 '13 at 9:39</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1949390/brian-oh"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/64cd775c51fc47067f0d133544385691?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1949390/brian-oh">Brian Oh</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">983</span><span title="11 silver badges"><span class="badge2"></span><span class="badgecount">11</span></span><span title="23 bronze badges"><span class="badge3"></span><span class="badgecount">23</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-22596920">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,064 views">
    4k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/22596920/split-a-module-across-several-files" class="question-hyperlink">Split a module across several files</a></h3>
        <div class="excerpt">
            I want to have a module with multiple structs in it, each in its own file. Using a Math module as an example:

Math/
  Vector.rs
  Matrix.rs
  Complex.rs


I want each struct to be in the same module, ...
        </div>          
        <div class="tags t-module t-rust">
            <a href="/questions/tagged/module" class="post-tag" title="show questions tagged &#39;module&#39;" rel="tag">module</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-03-23 20:53:07Z" class="relativetime">Mar 23 '14 at 20:53</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1938727/epicpineapple"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/adcb26992bdfcaef0657df6e08f2bc92?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1938727/epicpineapple">EpicPineapple</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">442</span><span title="6 silver badges"><span class="badge2"></span><span class="badgecount">6</span></span><span title="22 bronze badges"><span class="badge3"></span><span class="badgecount">22</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-19450145">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views " title="819 views">
    819 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/19450145/split-stacks-unneccesary-on-amd64" class="question-hyperlink">Split stacks unneccesary on amd64</a></h3>
        <div class="excerpt">
            There seems to be an opinion out there that using a "split stack" runtime model is unnecessary on 64-bit architectures.  I say seems to be, because I haven't seen anyone actually say that, only dance ...
        </div>          
        <div class="tags t-multithreading t-go t-64bit t-callstack t-rust">
            <a href="/questions/tagged/multithreading" class="post-tag" title="show questions tagged &#39;multithreading&#39;" rel="tag">multithreading</a> <a href="/questions/tagged/go" class="post-tag" title="show questions tagged &#39;go&#39;" rel="tag"><img src="//i.stack.imgur.com/sawHl.png" height="16" width="18" alt="" class="sponsor-tag-img">go</a> <a href="/questions/tagged/64bit" class="post-tag" title="show questions tagged &#39;64bit&#39;" rel="tag">64bit</a> <a href="/questions/tagged/callstack" class="post-tag" title="show questions tagged &#39;callstack&#39;" rel="tag">callstack</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-10-18 12:50:52Z" class="relativetime">Oct 18 '13 at 12:50</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1520878/brooks94"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/6822b07182b8c0ae366325f2ae4fab4f?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1520878/brooks94">brooks94</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">642</span><span title="7 silver badges"><span class="badge2"></span><span class="badgecount">7</span></span><span title="26 bronze badges"><span class="badge3"></span><span class="badgecount">26</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-20922091">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="4,348 views">
    4k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/20922091/how-do-you-use-parent-module-imports-in-rust" class="question-hyperlink">How do you use parent module imports in rust?</a></h3>
        <div class="excerpt">
            Hm, this is covered in the rust tutorial, but I can't actually make it work.

If you have a directory structure like this:

src/main.rs
src/module1/blah.rs
src/module1/blah2.rs
src/utils/logging.rs


...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-01-04 14:17:15Z" class="relativetime">Jan 4 '14 at 14:17</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/353820/doug"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/32b29e1dc23c2c5abe0283ab7b9541d3?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/353820/doug">Doug</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">4,278</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="31 silver badges"><span class="badge2"></span><span class="badgecount">31</span></span><span title="61 bronze badges"><span class="badge3"></span><span class="badgecount">61</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-26469715">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views " title="183 views">
    183 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/26469715/writing-a-rust-unit-test-that-passes-on-panic" class="question-hyperlink">Writing a Rust unit test that passes on panic?</a></h3>
        <div class="excerpt">
            Suppose that a function in rust panics under some condition (through the panic() macro). I wish to write a test case to validate whether the function is panicing or not under those conditions. I ...
        </div>          
        <div class="tags t-unit-testing t-rust">
            <a href="/questions/tagged/unit-testing" class="post-tag" title="show questions tagged &#39;unit-testing&#39;" rel="tag">unit-testing</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2014-10-20 15:46:32Z" class="relativetime">Oct 20 '14 at 15:46</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/208890/shailesh-kumar"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/349049eabb58b8a26443b3775b5dae52?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/208890/shailesh-kumar">Shailesh Kumar</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">2,894</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="14 silver badges"><span class="badge2"></span><span class="badgecount">14</span></span><span title="39 bronze badges"><span class="badge3"></span><span class="badgecount">39</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-17054978">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views warm" title="1,279 views">
    1k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/17054978/composition-operator-and-pipe-forward-operator-in-rust" class="question-hyperlink">Composition operator and pipe forward operator in Rust</a></h3>
        <div class="excerpt">
            Do both the composition and pipe forward operators (like in other languages) exist in Rust? If so, what do they look like and one should one be preferred to the other? If one does not exist, why is ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-06-11 22:34:31Z" class="relativetime">Jun 11 '13 at 22:34</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1298196/phlox-midas"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/69e43b7e3c97b3a41852e8defdd5da45?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1298196/phlox-midas">Phlox Midas</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">659</span><span title="6 silver badges"><span class="badge2"></span><span class="badgecount">6</span></span><span title="20 bronze badges"><span class="badge3"></span><span class="badgecount">20</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-30698561">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views " title="127 views">
    127 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/30698561/no-error-for-two-traits-implementing-the-same-method" class="question-hyperlink">No error for two traits implementing the same method</a></h3>
        <div class="excerpt">
            According to the docs, Rust should complain if I try to call a method provided by two different traits like this:

trait Foo {
    fn f(&amp;self);
}

trait Bar {
    fn f(&amp;self);
}

struct Baz;

...
        </div>          
        <div class="tags t-rust t-mio">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/mio" class="post-tag" title="show questions tagged &#39;mio&#39;" rel="tag">mio</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-06-07 21:21:27Z" class="relativetime">Jun 7 at 21:21</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1870481/michas"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/478e3c60bf48e069b2f79bddd202d600?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1870481/michas">michas</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">8,802</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="21 silver badges"><span class="badge2"></span><span class="badgecount">21</span></span><span title="57 bronze badges"><span class="badge3"></span><span class="badgecount">57</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-30272751">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views " title="351 views">
    351 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/30272751/generating-strings-and-identifying-substrings-is-very-slow" class="question-hyperlink">Generating strings and identifying substrings is very slow</a></h3>
        <div class="excerpt">
            I'd like to benchmark certain operations in Rust, but I seem to be having some trouble:

fn main(){

    let needle   = (0..100).map(|_| "b").collect::&lt;String&gt;();
    let haystack = ...
        </div>          
        <div class="tags t-string t-substring t-rust">
            <a href="/questions/tagged/string" class="post-tag" title="show questions tagged &#39;string&#39;" rel="tag">string</a> <a href="/questions/tagged/substring" class="post-tag" title="show questions tagged &#39;substring&#39;" rel="tag">substring</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-05-16 06:57:02Z" class="relativetime">May 16 at 6:57</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1889337/tasos-laskos"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/1cf962e3407c13a8f3caa30ba8c1ed80?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1889337/tasos-laskos">Tasos Laskos</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">110</span><span title="6 bronze badges"><span class="badge3"></span><span class="badgecount">6</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-26192564">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered">
                <strong>3</strong>answers
            </div>
        </div>
        <div class="views " title="852 views">
    852 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/26192564/rust-struct-can-borrow-a-mut-self-twice-so-why-cant-a-trait" class="question-hyperlink">Rust struct can borrow &ldquo;&amp;&#39;a mut self&rdquo; twice, so why can&#39;t a trait?</a></h3>
        <div class="excerpt">
            The following Rust code compiles successfully:



struct StructNothing&lt;'a&gt;;

impl&lt;'a&gt; StructNothing&lt;'a&gt; {
    fn nothing(&amp;'a mut self) -&gt; () {}

    fn twice_nothing(&amp;'a ...
        </div>          
        <div class="tags t-iterator t-rust t-lifetime">
            <a href="/questions/tagged/iterator" class="post-tag" title="show questions tagged &#39;iterator&#39;" rel="tag">iterator</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/lifetime" class="post-tag" title="show questions tagged &#39;lifetime&#39;" rel="tag">lifetime</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-10-04 11:55:51Z" class="relativetime">Oct 4 '14 at 11:55</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/12089/emk"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/c80aa0608c845cd64585e9fc9ca4cc67?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/12089/emk">emk</a><br>
        <span class="reputation-score" title="reputation score 33061" dir="ltr">33.1k</span><span title="3 gold badges"><span class="badge1"></span><span class="badgecount">3</span></span><span title="27 silver badges"><span class="badge2"></span><span class="badgecount">27</span></span><span title="42 bronze badges"><span class="badge3"></span><span class="badgecount">42</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-16818588">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>13</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="1,190 views">
    1k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/16818588/how-to-handle-blocking-i-o-in-rust-or-long-running-external-function-calls-in-g" class="question-hyperlink">How to handle blocking i/o in Rust, or long running external function calls in general</a></h3>
        <div class="excerpt">
            I need to read data provided by an external process via a posix filedescriptor in my Rust program. The fd connection is kept up a very long time (hours) and the other side passes data to me from time ...
        </div>          
        <div class="tags t-io t-task t-ffi t-rust">
            <a href="/questions/tagged/io" class="post-tag" title="show questions tagged &#39;io&#39;" rel="tag">io</a> <a href="/questions/tagged/task" class="post-tag" title="show questions tagged &#39;task&#39;" rel="tag">task</a> <a href="/questions/tagged/ffi" class="post-tag" title="show questions tagged &#39;ffi&#39;" rel="tag">ffi</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2013-05-29 15:53:06Z" class="relativetime">May 29 '13 at 15:53</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/44014/zargony"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/a1ac7908dc7ba59d1d73494b1dd39920?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/44014/zargony">Zargony</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">4,899</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="25 silver badges"><span class="badge2"></span><span class="badgecount">25</span></span><span title="38 bronze badges"><span class="badge3"></span><span class="badgecount">38</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-25959075">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>12</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="2,401 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/25959075/why-explicit-lifetime-bound-required-for-boxt-in-struct" class="question-hyperlink">Why &ldquo;explicit lifetime bound required&rdquo; for Box&lt;T&gt; in struct?</a></h3>
        <div class="excerpt">
            I'm trying to compile this rust code:

trait A {
    fn f(&amp;self);
}

struct S {
    a : Box&lt;A&gt;
}


and I'm getting this error:

a.rs:6:13: 6:14 error: explicit lifetime bound required
a.rs:6 ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2014-09-21 12:16:05Z" class="relativetime">Sep 21 '14 at 12:16</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/3994266/eugene-zemtsov"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/e7f84b29e7bdff6b1748d47e049710ab?s=32&amp;d=identicon&amp;r=PG&amp;f=1" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/3994266/eugene-zemtsov">Eugene Zemtsov</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">75</span><span title="5 bronze badges"><span class="badge3"></span><span class="badgecount">5</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-23975391">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>12</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="2,498 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/23975391/how-to-convert-string-into-static-str" class="question-hyperlink">How to convert String into &amp;&#39;static str</a></h3>
        <div class="excerpt">
            I wonder how do I convert a String (formerly StrBuf) into a &amp;str. More specifically, I would like to convert it into a str with a static lifetime (&amp;'static str)

        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2014-05-31 23:30:45Z" class="relativetime">May 31 '14 at 23:30</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/288703/christoph"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/1bb69b75c5e73a7c9f4ebbc4835d622f?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/288703/christoph">Christoph</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">6,309</span><span title="5 gold badges"><span class="badge1"></span><span class="badgecount">5</span></span><span title="37 silver badges"><span class="badge2"></span><span class="badgecount">37</span></span><span title="70 bronze badges"><span class="badge3"></span><span class="badgecount">70</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-15836096">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>12</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views " title="934 views">
    934 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/15836096/in-rust-what-is-the-idiomatic-equivalent-of-haskells-n-m" class="question-hyperlink">In rust, what is the idiomatic equivalent of Haskell&#39;s [n..m]?</a></h3>
        <div class="excerpt">
            How do I produce a list containing all the integers in Rust ? I'm looking for the equivalent of Haskell's [n..m] or python's range(n, m+1) but can't find anything.

I'm aware of the int::range ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2013-04-05 14:08:56Z" class="relativetime">Apr 5 '13 at 14:08</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/87584/fabien"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/9f6dfb6c18bce2c8487312b77c32dbc3?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/87584/fabien">Fabien</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">2,385</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="13 silver badges"><span class="badge2"></span><span class="badgecount">13</span></span><span title="36 bronze badges"><span class="badge3"></span><span class="badgecount">36</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-30450399">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>12</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views " title="98 views">
    98 views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/30450399/does-println-borrow-or-own-the-variable" class="question-hyperlink">Does println! borrow or own the variable?</a></h3>
        <div class="excerpt">
            I am learning Rust right now and am confused with borrowing and ownership. In the Rust documentation about reference and borrowing

let mut x = 5;
{
    let y = &amp;mut x;
    *y += 1;
}
...
        </div>          
        <div class="tags t-rust t-ownership">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> <a href="/questions/tagged/ownership" class="post-tag" title="show questions tagged &#39;ownership&#39;" rel="tag">ownership</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-05-26 05:48:49Z" class="relativetime">May 26 at 5:48</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/3800474/kevinyu"><div class="gravatar-wrapper-32"><img src="http://graph.facebook.com/1326889668/picture?type=large" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/3800474/kevinyu">kevinyu</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">97</span><span title="6 bronze badges"><span class="badge3"></span><span class="badgecount">6</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-27872753">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>12</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="2,525 views">
    3k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/27872753/what-is-warnunstable-about-in-rust" class="question-hyperlink">What is #[warn(unstable)] about in Rust?</a></h3>
        <div class="excerpt">
            I have a really simple cat function written in the Rust 1.0 alpha.

use std::io;

fn main(){
    let mut reader = io::stdin();
    loop {
        let input = reader.read_line().ok().expect("Failed to ...
        </div>          
        <div class="tags t-io t-rust">
            <a href="/questions/tagged/io" class="post-tag" title="show questions tagged &#39;io&#39;" rel="tag">io</a> <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-01-10 04:05:16Z" class="relativetime">Jan 10 at 4:05</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/1924257/wegry"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/31d8a68147c1d5a6b07b9c0743903ea2?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/1924257/wegry">wegry</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">468</span><span title="5 silver badges"><span class="badge2"></span><span class="badgecount">5</span></span><span title="18 bronze badges"><span class="badge3"></span><span class="badgecount">18</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-27904864">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>12</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>1</strong>answer
            </div>
        </div>
        <div class="views warm" title="1,165 views">
    1k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/27904864/what-does-cannot-move-out-of-indexed-content-mean" class="question-hyperlink">What does &ldquo;cannot move out of indexed content&rdquo; mean?</a></h3>
        <div class="excerpt">
            I am playing with Rust, and I'm trying to access the first command line argument with this code:

use std::os;

fn main() {
    let dir = os::args()[1];
    println!("Hello, world!");
}


And I get ...
        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info ">
    <div class="user-action-time">
        asked <span title="2015-01-12 14:59:29Z" class="relativetime">Jan 12 at 14:59</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/161922/rory"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/16e12e337f6edc3750681492656097ed?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/161922/rory">Rory</a><br>
        <span class="reputation-score" title="reputation score 10986" dir="ltr">11k</span><span title="28 gold badges"><span class="badge1"></span><span class="badgecount">28</span></span><span title="110 silver badges"><span class="badge2"></span><span class="badgecount">110</span></span><span title="172 bronze badges"><span class="badge3"></span><span class="badgecount">172</span></span>
    </div>
</div>
        </div>  
    </div>
</div><div class="question-summary" id="question-summary-21011330">
    <div class="statscontainer">
        <div class="statsarrow"></div>
        <div class="stats">
            <div class="vote">
                <div class="votes">
                    <span class="vote-count-post "><strong>11</strong></span>
                    <div class="viewcount">votes</div>
                </div>
            </div>
            <div class="status answered-accepted">
                <strong>2</strong>answers
            </div>
        </div>
        <div class="views warm" title="2,446 views">
    2k views
</div>
    </div>
    <div class="summary">
        <h3><a href="/questions/21011330/in-rust-how-do-i-invoke-a-system-command-and-capture-its-output" class="question-hyperlink">In Rust, how do I invoke a system command and capture its output?</a></h3>
        <div class="excerpt">
            Is there a way to invoke a system command, like ls or fuser in Rust? How about capturing its output?

        </div>          
        <div class="tags t-rust">
            <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
        </div>
        <div class="started fr">
            <div class="user-info user-hover">
    <div class="user-action-time">
        asked <span title="2014-01-09 03:55:46Z" class="relativetime">Jan 9 '14 at 3:55</span>
    </div>
    <div class="user-gravatar32">
        <a href="/users/871012/quux00"><div class="gravatar-wrapper-32"><img src="https://www.gravatar.com/avatar/dcc24a9085a147962bb2ddac10da2082?s=32&amp;d=identicon&amp;r=PG" alt="" width="32" height="32"></div></a>
    </div>
    <div class="user-details">
        <a href="/users/871012/quux00">quux00</a><br>
        <span class="reputation-score" title="reputation score " dir="ltr">3,465</span><span title="1 gold badge"><span class="badge1"></span><span class="badgecount">1</span></span><span title="20 silver badges"><span class="badge2"></span><span class="badgecount">20</span></span><span title="45 bronze badges"><span class="badge3"></span><span class="badgecount">45</span></span>
    </div>
</div>
        </div>  
    </div>
</div>
        </div>

        <br class="cbt" />
        <div class="pager fl">
        




 <span class="page-numbers current">1</span>         <a href="/questions/tagged/rust?page=2&amp;sort=votes" title="go to page 2"> <span class="page-numbers">2</span> </a> 
        <a href="/questions/tagged/rust?page=3&amp;sort=votes" title="go to page 3"> <span class="page-numbers">3</span> </a> 
        <a href="/questions/tagged/rust?page=4&amp;sort=votes" title="go to page 4"> <span class="page-numbers">4</span> </a> 
        <a href="/questions/tagged/rust?page=5&amp;sort=votes" title="go to page 5"> <span class="page-numbers">5</span> </a> 
 <span class="page-numbers dots">…</span>         <a href="/questions/tagged/rust?page=56&amp;sort=votes" title="go to page 56"> <span class="page-numbers">56</span> </a> 
        <a href="/questions/tagged/rust?page=2&amp;sort=votes" rel="next" title="go to page 2"> <span class="page-numbers next"> next</span> </a> 

    </div>

        
<div id="feed-link">
    <div id="feed-link-text">
        <a href="/feeds/tag?tagnames=rust&amp;sort=votes" title="the 30 highest voted rust questions">
            <span class="feed-icon"></span>highest voted rust questions feed
        </a>
    </div>
</div>
    </div>
    <div id="sidebar">
        <div class="module">
            <div class="summarycount al">2,758</div>
            <p>questions tagged</p>
            <div class="tagged">
                <a href="/questions/tagged/rust" class="post-tag" title="show questions tagged &#39;rust&#39;" rel="tag">rust</a> 
                    <a style="margin-left: 10px;" title="tag wiki, stats and faq" href="/tags/rust/info">about&nbsp;&raquo;</a>
            </div>
        </div>

        
        
        
        <script>
                var ados = ados || {}; ados.run = ados.run || [];
                ados.run.push(function () { ados_add_placement(22,8277,"adzerk332956176",[17,2221]).setZone(45); });
            </script>
            <div class="everyonelovesstackoverflow" id="adzerk332956176">
            </div>
        <div id="hireme">
            <script>
;(function(n){var o=20,b="#sidebar [id^='adzerk'].everyonelovesstackoverflow",s="div#hireme,div.hireme",r=setTimeout,f=clearTimeout,t=null,h=!1,e=null,u,c=n.adurl,k=n.azw,d=n.azt,l=Array.prototype,a=l.map,g=l.forEach,v=function(){return(new Date).getTime()},nt=v(),i=function(n){return document.querySelectorAll(n)},tt=function(n){var t={},r=window.StackExchange,e=decodeURIComponent,u,f;return n.length>1&&n.substr(1).split("&").forEach(function(n){var t=n.split("=");this[e(t[0])]=e(t[1])},t),f=t.ac||t.accountid||r&&r.options&&r.options.user&&r.options.user.accountId,f&&(t.ac=f),t.tags||(u=a.call(i(".post-taglist .post-tag"),function(n){return n.innerText}),u.length>0&&(t.tags=u.join(";"))),n==="#large"&&(t.l=1),n==="#abort"&&(t.abort=1),t},y=function(n){return typeof n=="string"&&(n=i(n)),n.length!==0&&n[0].innerHTML.replace(/\s+/g,"").length>0},p=function(n,r){if(!h){h=!0;var l=i(s),y=document,p=encodeURIComponent,w,o,b,e,u;f(t);l.length>0&&((n.l||i("#careersadsdoublehigh").length>0)&&(n.l=1),u=a.call(l,function(n){return"d="+n.id}).join("&"),w=["l","ip","ac","eng","prov","tags","theme","remote","seed"],o=Object.keys(n).filter(function(n){return w.indexOf(n)!==-1}).map(function(t){return p(t)+"="+p(n[t])}).join("&"),o&&(u+="&"+o),r&&(u+="&azt=true"),b=v()-nt,u+="&lw="+b,e=y.createElement("script"),e.type="text/javascript",e.src=c+(c.indexOf("?")===-1?"?":"&")+u,y.body.appendChild(e),window.calculonPlacerStart=(new Date).getTime())}},it=function(n){y(n)||(g.call(i(n),function(n){n.parentNode.removeChild(n)}),t&&f(t))},w=function(n){y(b)?(e&&f(e),p(n)):t=r(w,o,n)};(u=tt(location.hash),u.abort)||(k&&(e=r(p,d,u,!0)),t=r(w,o,u),r(it,2e3,s))}).apply(null, [{"azw":false,"azt":2000,"adurl":"//clc.stackoverflow.com/j/p"}])            </script>
        </div>
        

            <div class="module js-gps-related-tags">
                
<h4 id="h-related-tags">Related Tags</h4>
        <div>
            <a href="/questions/tagged/lifetime" class="post-tag no-tag-menu" title="show questions tagged &#39;lifetime&#39;" rel="tag">lifetime</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">165</span></span>
        </div>
        <div>
            <a href="/questions/tagged/traits" class="post-tag no-tag-menu" title="show questions tagged &#39;traits&#39;" rel="tag">traits</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">83</span></span>
        </div>
        <div>
            <a href="/questions/tagged/rust-cargo" class="post-tag no-tag-menu" title="show questions tagged &#39;rust-cargo&#39;" rel="tag">rust-cargo</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">79</span></span>
        </div>
        <div>
            <a href="/questions/tagged/string" class="post-tag no-tag-menu" title="show questions tagged &#39;string&#39;" rel="tag">string</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">76</span></span>
        </div>
        <div>
            <a href="/questions/tagged/ffi" class="post-tag no-tag-menu" title="show questions tagged &#39;ffi&#39;" rel="tag">ffi</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">62</span></span>
        </div>
        <div>
            <a href="/questions/tagged/iterator" class="post-tag no-tag-menu" title="show questions tagged &#39;iterator&#39;" rel="tag">iterator</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">58</span></span>
        </div>
        <div>
            <a href="/questions/tagged/multithreading" class="post-tag no-tag-menu" title="show questions tagged &#39;multithreading&#39;" rel="tag">multithreading</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">50</span></span>
        </div>
        <div>
            <a href="/questions/tagged/generics" class="post-tag no-tag-menu" title="show questions tagged &#39;generics&#39;" rel="tag">generics</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">50</span></span>
        </div>
        <div>
            <a href="/questions/tagged/arrays" class="post-tag no-tag-menu" title="show questions tagged &#39;arrays&#39;" rel="tag">arrays</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">49</span></span>
        </div>
        <div>
            <a href="/questions/tagged/borrow-checker" class="post-tag no-tag-menu" title="show questions tagged &#39;borrow-checker&#39;" rel="tag">borrow-checker</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">47</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/closures" class="post-tag no-tag-menu" title="show questions tagged &#39;closures&#39;" rel="tag">closures</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">46</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/pointers" class="post-tag no-tag-menu" title="show questions tagged &#39;pointers&#39;" rel="tag">pointers</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">45</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/vector" class="post-tag no-tag-menu" title="show questions tagged &#39;vector&#39;" rel="tag">vector</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">42</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/c" class="post-tag no-tag-menu" title="show questions tagged &#39;c&#39;" rel="tag">c</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">37</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/struct" class="post-tag no-tag-menu" title="show questions tagged &#39;struct&#39;" rel="tag">struct</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">33</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/macros" class="post-tag no-tag-menu" title="show questions tagged &#39;macros&#39;" rel="tag">macros</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">33</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/enums" class="post-tag no-tag-menu" title="show questions tagged &#39;enums&#39;" rel="tag">enums</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">27</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/trait" class="post-tag no-tag-menu" title="show questions tagged &#39;trait&#39;" rel="tag">trait</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">27</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/reference" class="post-tag no-tag-menu" title="show questions tagged &#39;reference&#39;" rel="tag">reference</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">26</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/types" class="post-tag no-tag-menu" title="show questions tagged &#39;types&#39;" rel="tag">types</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">25</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/pattern-matching" class="post-tag no-tag-menu" title="show questions tagged &#39;pattern-matching&#39;" rel="tag">pattern-matching</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">24</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/json" class="post-tag no-tag-menu" title="show questions tagged &#39;json&#39;" rel="tag">json</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">22</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/windows" class="post-tag no-tag-menu" title="show questions tagged &#39;windows&#39;" rel="tag">windows</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">20</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/io" class="post-tag no-tag-menu" title="show questions tagged &#39;io&#39;" rel="tag">io</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">17</span></span>
        </div>
        <div class="dno js-hidden">
            <a href="/questions/tagged/ownership" class="post-tag no-tag-menu" title="show questions tagged &#39;ownership&#39;" rel="tag">ownership</a>&nbsp;<span class="item-multiplier"><span class="item-multiplier-x">&times;</span>&nbsp;<span class="item-multiplier-count">16</span></span>
        </div>
        <a href="#"
           class="show-more js-show-more js-gps-track"
           data-gps-track="related_tags.click({ item_type:2 })">
            more related tags
        </a>
        <script>
            StackExchange.ready(function () {
                var $div = $('#h-related-tags').parent();
                $div.find('.js-show-more').click(function () {
                    $div.find('.js-hidden').show();
                    $(this).remove();
                    return false;
                });
            });
        </script>

            </div>

<div id="hot-network-questions" class="module">
    <h4>
        <a href="//stackexchange.com/questions?tab=hot" 
           class="js-gps-track" 
           data-gps-track="posts_hot_network.click({ item_type:1, location:9 })">
            Hot Network Questions
        </a>
    </h4>
    <ul>
            <li >
                <div class="favicon favicon-academia" title="Academia Stack Exchange"></div><a href="http://academia.stackexchange.com/questions/51206/is-it-ethical-legal-to-use-the-universitys-resources-for-a-personal-project" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:415 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Is it ethical/legal to use the University&#39;s resources for a personal project?
                </a>

            </li>
            <li >
                <div class="favicon favicon-english" title="English Language &amp; Usage Stack Exchange"></div><a href="http://english.stackexchange.com/questions/265959/is-warrioress-a-real-word" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:97 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Is Warrioress a real word?
                </a>

            </li>
            <li >
                <div class="favicon favicon-hsm" title="History of Science and Mathematics Stack Exchange"></div><a href="http://hsm.stackexchange.com/questions/2631/historically-how-did-people-define-multiplication-for-negative-numbers" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:587 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Historically, how did people define multiplication for negative numbers?
                </a>

            </li>
            <li >
                <div class="favicon favicon-math" title="Mathematics Stack Exchange"></div><a href="http://math.stackexchange.com/questions/1391737/integrating-an-absolute-value-problem" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:69 }); posts_hot_network.click({ item_type:2, location:9 })">
                    integrating an absolute value problem
                </a>

            </li>
            <li >
                <div class="favicon favicon-stackoverflow" title="Stack Overflow"></div><a href="http://stackoverflow.com/questions/31912784/detect-ctrl-a-in-keyup-event" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:1 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Detect Ctrl + A in keyup event
                </a>

            </li>
            <li >
                <div class="favicon favicon-physics" title="Physics Stack Exchange"></div><a href="http://physics.stackexchange.com/questions/199580/where-light-goes-after-it-enters-the-black-hole" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:151 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Where light goes after it enters the black hole?
                </a>

            </li>
            <li >
                <div class="favicon favicon-photo" title="Photography Stack Exchange"></div><a href="http://photo.stackexchange.com/questions/67252/do-i-need-a-uv-filter" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:61 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Do I need a UV filter?
                </a>

            </li>
            <li >
                <div class="favicon favicon-superuser" title="Super User"></div><a href="http://superuser.com/questions/954262/why-do-damaged-hard-drives-freeze-entire-system" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:3 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Why do damaged hard drives freeze entire system?
                </a>

            </li>
            <li >
                <div class="favicon favicon-apple" title="Ask Different"></div><a href="http://apple.stackexchange.com/questions/199517/where-i-can-find-the-official-os-x-10-10-documentation" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:118 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Where I can find the official OS X 10.10 documentation?
                </a>

            </li>
            <li >
                <div class="favicon favicon-stackoverflow" title="Stack Overflow"></div><a href="http://stackoverflow.com/questions/31917830/associativity-of-function-call-operator-in-c" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:1 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Associativity of function call operator in C
                </a>

            </li>
            <li >
                <div class="favicon favicon-electronics" title="Electrical Engineering Stack Exchange"></div><a href="http://electronics.stackexchange.com/questions/184933/can-a-relay-failure-mode-be-like-that" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:135 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Can a relay failure mode be like that?
                </a>

            </li>
            <li >
                <div class="favicon favicon-ux" title="User Experience Stack Exchange"></div><a href="http://ux.stackexchange.com/questions/82386/how-to-encourage-honest-user-behavior-in-ui" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:102 }); posts_hot_network.click({ item_type:2, location:9 })">
                    How to encourage honest user behavior in UI
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-unix" title="Unix &amp; Linux Stack Exchange"></div><a href="http://unix.stackexchange.com/questions/221970/is-documents-a-relative-or-an-absolute-path" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:106 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Is `~/Documents` a relative or an absolute path?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-tex" title="TeX - LaTeX Stack Exchange"></div><a href="http://tex.stackexchange.com/questions/260634/center-and-number-each-equation" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:85 }); posts_hot_network.click({ item_type:2, location:9 })">
                    center and number each equation
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-rpg" title="Role-playing Games Stack Exchange"></div><a href="http://rpg.stackexchange.com/questions/66917/when-must-the-wizard-choose-to-overchannel" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:122 }); posts_hot_network.click({ item_type:2, location:9 })">
                    When must the wizard choose to overchannel?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-sustainability" title="Sustainable Living Stack Exchange"></div><a href="http://sustainability.stackexchange.com/questions/4652/is-creating-hydrogen-fuel-for-the-fuel-cell-from-the-solar-panel-worth-consideri" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:483 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Is creating hydrogen fuel for the fuel cell from the solar panel worth considering?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-stats" title="Cross Validated"></div><a href="http://stats.stackexchange.com/questions/166434/how-to-account-for-participants-in-a-study-design" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:65 }); posts_hot_network.click({ item_type:2, location:9 })">
                    How to account for participants in a study design?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-space" title="Space Exploration Stack Exchange"></div><a href="http://space.stackexchange.com/questions/10517/why-do-deep-space-probes-have-to-be-sterilized" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:508 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Why do deep space probes have to be sterilized?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-blender" title="Blender Stack Exchange"></div><a href="http://blender.stackexchange.com/questions/35425/what-are-these-called-in-the-user-preferences" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:502 }); posts_hot_network.click({ item_type:2, location:9 })">
                    What are these called in the User Preferences?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-gis" title="Geographic Information Systems Stack Exchange"></div><a href="http://gis.stackexchange.com/questions/157656/password-protect-qgis-project" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:79 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Password Protect QGIS project
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-unix" title="Unix &amp; Linux Stack Exchange"></div><a href="http://unix.stackexchange.com/questions/222146/awk-does-not-end" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:106 }); posts_hot_network.click({ item_type:2, location:9 })">
                    awk does not end
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-japanese" title="Japanese Language Stack Exchange"></div><a href="http://japanese.stackexchange.com/questions/27300/younger-uncles-and-aunts" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:257 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Younger uncles and aunts
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-security" title="Information Security Stack Exchange"></div><a href="http://security.stackexchange.com/questions/96377/why-do-people-use-ip-bans-when-ip-addresses-often-change" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:162 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Why do people use IP bans when IP addresses often change?
                </a>

            </li>
            <li class="dno js-hidden">
                <div class="favicon favicon-tex" title="TeX - LaTeX Stack Exchange"></div><a href="http://tex.stackexchange.com/questions/260610/drawing-unstructured-grids-with-tikz" class="js-gps-track" data-gps-track="site.switch({ item_type:9, target_site:85 }); posts_hot_network.click({ item_type:2, location:9 })">
                    Drawing unstructured grids with Tikz
                </a>

            </li>
    </ul>

        <a href="#" 
           class="show-more js-show-more js-gps-track" 
           data-gps-track="posts_hot_network.click({ item_type:3, location:9 })">
            more hot questions
        </a>
</div>
    </div>

        </div>
    </div>
    <div id="footer" class="categories">
        <div class="footerwrap">
            <div id="footer-menu">
                <div class="top-footer-links">
                        <a href="/tour">tour</a>
                    <a href="/help">help</a>
                    <a href="http://blog.stackoverflow.com?blb=1">blog</a>
                        <a href="http://chat.stackoverflow.com">chat</a>
                    <a href="http://data.stackexchange.com">data</a>
                    <a href="http://stackexchange.com/legal">legal</a>
                    <a href="http://stackexchange.com/legal/privacy-policy">privacy policy</a>
                    <a href="http://stackexchange.com/work-here">work here</a>
                    <a href="http://stackexchange.com/mediakit">advertising info</a>

                    <a onclick='StackExchange.switchMobile("on")'>mobile</a>
                    <b><a href="/contact">contact us</a></b>
                        <b><a href="http://meta.stackoverflow.com">feedback</a></b>
                    
                </div>
                <div id="footer-sites">
                    <table>
    <tr>
            <th colspan=3>
                Technology
            </th>
            <th >
                Life / Arts
            </th>
            <th >
                Culture / Recreation
            </th>
            <th >
                Science
            </th>
            <th >
                Other
            </th>
    </tr>
    <tr>
            <td>
                <ol>
                        <li><a href="//stackoverflow.com" title="professional and enthusiast programmers">Stack Overflow</a></li>
                        <li><a href="//serverfault.com" title="system and network administrators">Server Fault</a></li>
                        <li><a href="//superuser.com" title="computer enthusiasts and power users">Super User</a></li>
                        <li><a href="//webapps.stackexchange.com" title="power users of web applications">Web Applications</a></li>
                        <li><a href="//askubuntu.com" title="Ubuntu users and developers">Ask Ubuntu</a></li>
                        <li><a href="//webmasters.stackexchange.com" title="pro webmasters">Webmasters</a></li>
                        <li><a href="//gamedev.stackexchange.com" title="professional and independent game developers">Game Development</a></li>
                        <li><a href="//tex.stackexchange.com" title="users of TeX, LaTeX, ConTeXt, and related typesetting systems">TeX - LaTeX</a></li>
                            </ol></td><td><ol>
                        <li><a href="//programmers.stackexchange.com" title="professional programmers interested in conceptual questions about software development">Programmers</a></li>
                        <li><a href="//unix.stackexchange.com" title="users of Linux, FreeBSD and other Un*x-like operating systems.">Unix &amp; Linux</a></li>
                        <li><a href="//apple.stackexchange.com" title="power users of Apple hardware and software">Ask Different (Apple)</a></li>
                        <li><a href="//wordpress.stackexchange.com" title="WordPress developers and administrators">WordPress Development</a></li>
                        <li><a href="//gis.stackexchange.com" title="cartographers, geographers and GIS professionals">Geographic Information Systems</a></li>
                        <li><a href="//electronics.stackexchange.com" title="electronics and electrical engineering professionals, students, and enthusiasts">Electrical Engineering</a></li>
                        <li><a href="//android.stackexchange.com" title="enthusiasts and power users of the Android operating system">Android Enthusiasts</a></li>
                        <li><a href="//security.stackexchange.com" title="information security professionals">Information Security</a></li>
                            </ol></td><td><ol>
                        <li><a href="//dba.stackexchange.com" title="database professionals who wish to improve their database skills and learn from others in the community">Database Administrators</a></li>
                        <li><a href="//drupal.stackexchange.com" title="Drupal developers and administrators">Drupal Answers</a></li>
                        <li><a href="//sharepoint.stackexchange.com" title="SharePoint enthusiasts">SharePoint</a></li>
                        <li><a href="//ux.stackexchange.com" title="user experience researchers and experts">User Experience</a></li>
                        <li><a href="//mathematica.stackexchange.com" title="users of Mathematica">Mathematica</a></li>
                        <li><a href="//salesforce.stackexchange.com" title="Salesforce administrators, implementation experts, developers and anybody in-between">Salesforce</a></li>
                        <li><a href="//expressionengine.stackexchange.com" title="administrators, end users, developers and designers for ExpressionEngine&#174; CMS">ExpressionEngine&#174; Answers</a></li>
                    
                        <li>
                            <a href="http://stackexchange.com/sites#technology" class="more">
                                more (13)
                            </a>
                        </li>
                </ol>
            </td>
            <td>
                <ol>
                        <li><a href="//photo.stackexchange.com" title="professional, enthusiast and amateur photographers">Photography</a></li>
                        <li><a href="//scifi.stackexchange.com" title="science fiction and fantasy enthusiasts">Science Fiction &amp; Fantasy</a></li>
                        <li><a href="//graphicdesign.stackexchange.com" title="Graphic Design professionals, students, and enthusiasts">Graphic Design</a></li>
                        <li><a href="//movies.stackexchange.com" title="movie and tv enthusiasts">Movies &amp; TV</a></li>
                        <li><a href="//cooking.stackexchange.com" title="professional and amateur chefs">Seasoned Advice (cooking)</a></li>
                        <li><a href="//diy.stackexchange.com" title="contractors and serious DIYers">Home Improvement</a></li>
                        <li><a href="//money.stackexchange.com" title="people who want to be financially literate">Personal Finance &amp; Money</a></li>
                        <li><a href="//academia.stackexchange.com" title="academics and those enrolled in higher education">Academia</a></li>
                    
                        <li>
                            <a href="http://stackexchange.com/sites#lifearts" class="more">
                                more (9)
                            </a>
                        </li>
                </ol>
            </td>
            <td>
                <ol>
                        <li><a href="//english.stackexchange.com" title="linguists, etymologists, and serious English language enthusiasts">English Language &amp; Usage</a></li>
                        <li><a href="//skeptics.stackexchange.com" title="scientific skepticism">Skeptics</a></li>
                        <li><a href="//judaism.stackexchange.com" title="those who base their lives on Jewish law and tradition and anyone interested in learning more">Mi Yodeya (Judaism)</a></li>
                        <li><a href="//travel.stackexchange.com" title="road warriors and seasoned travelers">Travel</a></li>
                        <li><a href="//christianity.stackexchange.com" title="committed Christians, experts in Christianity and those interested in learning more">Christianity</a></li>
                        <li><a href="//gaming.stackexchange.com" title="passionate videogamers on all platforms">Arqade (gaming)</a></li>
                        <li><a href="//bicycles.stackexchange.com" title="people who build and repair bicycles, people who train cycling, or commute on bicycles">Bicycles</a></li>
                        <li><a href="//rpg.stackexchange.com" title="gamemasters and players of tabletop, paper-and-pencil role-playing games">Role-playing Games</a></li>
                    
                        <li>
                            <a href="http://stackexchange.com/sites#culturerecreation" class="more">
                                more (21)
                            </a>
                        </li>
                </ol>
            </td>
            <td>
                <ol>
                        <li><a href="//math.stackexchange.com" title="people studying math at any level and professionals in related fields">Mathematics</a></li>
                        <li><a href="//stats.stackexchange.com" title="people interested in statistics, machine learning, data analysis, data mining, and data visualization">Cross Validated (stats)</a></li>
                        <li><a href="//cstheory.stackexchange.com" title="theoretical computer scientists and researchers in related fields">Theoretical Computer Science</a></li>
                        <li><a href="//physics.stackexchange.com" title="active researchers, academics and students of physics">Physics</a></li>
                        <li><a href="//mathoverflow.net" title="professional mathematicians">MathOverflow</a></li>
                        <li><a href="//chemistry.stackexchange.com" title="scientists, academics, teachers and students">Chemistry</a></li>
                        <li><a href="//biology.stackexchange.com" title="biology researchers, academics, and students">Biology</a></li>
                    
                        <li>
                            <a href="http://stackexchange.com/sites#science" class="more">
                                more (5)
                            </a>
                        </li>
                </ol>
            </td>
            <td>
                <ol>
                        <li><a href="//stackapps.com" title="apps, scripts, and development with the Stack Exchange API">Stack Apps</a></li>
                        <li><a href="//meta.stackexchange.com" title="meta-discussion of the Stack Exchange family of Q&amp;A websites">Meta Stack Exchange</a></li>
                        <li><a href="//area51.stackexchange.com" title="proposing new sites in the Stack Exchange network">Area 51</a></li>
                        <li><a href="//careers.stackoverflow.com">Stack Overflow Careers</a></li>
                    
                </ol>
            </td>
    </tr>
</table>
                </div>
            </div>

            <div id="copyright">
                site design / logo &#169; 2015 Stack Exchange Inc; user contributions licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/" rel="license">cc by-sa 3.0</a> 
                with <a href="http://blog.stackoverflow.com/2009/06/attribution-required/" rel="license">attribution required</a>
            </div>
            <div id="svnrev">
                rev 2015.8.10.683
            </div>
            
        </div>
    </div>
    <noscript>
        <div id="noscript-warning">Stack Overflow works best with JavaScript enabled<img src="http://pixel.quantserve.com/pixel/p-c1rF4kxgLUzNc.gif" alt="" class="dno"></div>
    </noscript>
<script>var p = "http", d = "static"; if (document.location.protocol == "https:") { p += "s"; d = "engine"; } var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = p + "://" + d + ".adzerk.net/ados.js"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script>
<script>
    var ados = ados || {};
    ados.run = ados.run || [];
    ados.run.push(function () { ados_setKeywords('rust');; ados_load(); });         
</script>

    <script>
        (function (i, s, o, g, r, a, m) {
            i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { (i[r].q = i[r].q || []).push(arguments) }, i[r].l = 1 * new Date(); a = s.createElement(o),
            m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m);
        })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
        ga('create', 'UA-5620270-1');        
        
        ga('set', 'dimension2', '|rust|');         
        ga('send', 'pageview');
        var _qevents = _qevents || [],
            _comscore = _comscore || [];
        (function () {
            var ssl='https:'==document.location.protocol,
                s=document.getElementsByTagName('script')[0],
                qc=document.createElement('script');
            qc.async=true;
            qc.src=(ssl?'https://secure':'http://edge')+'.quantserve.com/quant.js';
            s.parentNode.insertBefore(qc, s);
            var sc=document.createElement('script');
            sc.async=true;
            sc.src=(ssl?'https://sb':'http://b') + '.scorecardresearch.com/beacon.js';
            s.parentNode.insertBefore(sc, s);
        })();
        _comscore.push({ c1: "2", c2: "17440561" });
        _qevents.push({ qacct: "p-c1rF4kxgLUzNc" });
    </script>            
    </body>
</html>