2013-12-22 20:21:45 -06:00
|
|
|
% Rust documentation
|
|
|
|
|
2014-01-06 19:24:19 -06:00
|
|
|
<!-- Completely hide the TOC and the section numbers -->
|
|
|
|
<style type="text/css">
|
|
|
|
#TOC { display: none; }
|
|
|
|
.header-section-number { display: none; }
|
2014-01-15 19:19:36 -06:00
|
|
|
li {list-style-type: none; }
|
2014-01-06 19:24:19 -06:00
|
|
|
</style>
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-04-14 22:49:29 -05:00
|
|
|
* [A 30-minute Intro to Rust](intro.html)
|
2014-01-15 19:19:36 -06:00
|
|
|
* [The Rust tutorial](tutorial.html) (* [PDF](tutorial.pdf))
|
|
|
|
* [The Rust reference manual](rust.html) (* [PDF](rust.pdf))
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-06 19:24:19 -06:00
|
|
|
# Guides
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-15 19:19:36 -06:00
|
|
|
* [Pointers](guide-pointers.html)
|
|
|
|
* [References and Lifetimes](guide-lifetimes.html)
|
|
|
|
* [Containers and Iterators](guide-container.html)
|
|
|
|
* [Tasks and Communication](guide-tasks.html)
|
|
|
|
* [Foreign Function Interface](guide-ffi.html)
|
2014-03-14 10:13:48 -05:00
|
|
|
* [Writing Safe Unsafe and Low-Level Code](guide-unsafe.html)
|
2014-01-15 19:19:36 -06:00
|
|
|
* [Macros](guide-macros.html)
|
|
|
|
* [Testing](guide-testing.html)
|
|
|
|
* [Rust's Runtime](guide-runtime.html)
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-06 19:24:19 -06:00
|
|
|
# Libraries
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-02-16 02:21:08 -06:00
|
|
|
* [The standard library, `std`](std/index.html)
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-03-08 05:05:20 -06:00
|
|
|
<!-- force the two lists to be separate -->
|
|
|
|
|
2014-01-28 20:50:05 -06:00
|
|
|
* [The `arena` allocation library](arena/index.html)
|
2014-02-02 23:56:49 -06:00
|
|
|
* [The `collections` library](collections/index.html)
|
2014-01-24 23:00:31 -06:00
|
|
|
* [The `flate` compression library](flate/index.html)
|
2014-02-10 12:12:13 -06:00
|
|
|
* [The `fourcc` four-character code library](fourcc/index.html)
|
2014-02-02 17:20:32 -06:00
|
|
|
* [The `getopts` argument parsing library](getopts/index.html)
|
2014-01-28 20:51:33 -06:00
|
|
|
* [The `glob` file path matching library](glob/index.html)
|
2014-02-16 02:21:08 -06:00
|
|
|
* [The `green` M:N runtime library](green/index.html)
|
2014-03-12 07:19:09 -05:00
|
|
|
* [The `hexfloat` library for hexadecimal floating-point literals](hexfloat/index.html)
|
2014-02-26 11:58:41 -06:00
|
|
|
* [The `libc` bindings](libc/index.html)
|
2014-02-16 02:21:08 -06:00
|
|
|
* [The `native` 1:1 threading runtime](native/index.html)
|
|
|
|
* [The `num` arbitrary precision numerics library](num/index.html)
|
2014-03-12 07:19:09 -05:00
|
|
|
* [The `rand` library for random numbers and distributions](rand/index.html)
|
2014-04-24 23:27:24 -05:00
|
|
|
* [The `regex` library for regular expressions](regex/index.html)
|
2014-02-16 02:21:08 -06:00
|
|
|
* [The `rustc` compiler](rustc/index.html)
|
|
|
|
* [The `rustuv` M:N I/O library](rustuv/index.html)
|
2014-02-03 02:13:08 -06:00
|
|
|
* [The `semver` version collation library](semver/index.html)
|
2014-02-05 10:52:54 -06:00
|
|
|
* [The `serialize` value encoding/decoding library](serialize/index.html)
|
2014-01-30 14:04:47 -06:00
|
|
|
* [The `sync` library for concurrency-enabled mechanisms and primitives](sync/index.html)
|
2014-02-16 02:21:08 -06:00
|
|
|
* [The `syntax` library, the Rust parser](syntax/index.html)
|
2014-02-05 10:52:54 -06:00
|
|
|
* [The `term` terminal-handling library](term/index.html)
|
2014-02-28 06:25:44 -06:00
|
|
|
* [The `test` library containing the unit-testing & micro-benchmark framework](test/index.html)
|
|
|
|
* [The `time` library](time/index.html)
|
2014-02-05 10:52:54 -06:00
|
|
|
* [The `uuid` 128-bit universally unique identifier library](uuid/index.html)
|
2014-03-14 13:16:10 -05:00
|
|
|
* [The `url` library](url/index.html)
|
|
|
|
* [The `workcache` library](workcache/index.html)
|
2014-03-13 01:34:31 -05:00
|
|
|
* [The `log` library](log/index.html)
|
2014-01-24 23:00:31 -06:00
|
|
|
|
2014-01-06 19:24:19 -06:00
|
|
|
# Tooling
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-15 19:19:36 -06:00
|
|
|
* [The `rustdoc` manual](rustdoc.html)
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-06 19:24:19 -06:00
|
|
|
# FAQs
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-15 19:19:36 -06:00
|
|
|
* [Language FAQ](complement-lang-faq.html)
|
|
|
|
* [Project FAQ](complement-project-faq.html)
|
2014-01-24 23:00:31 -06:00
|
|
|
* [Code cheatsheet](complement-cheatsheet.html) - "How do I do X?"
|
2014-01-15 19:19:36 -06:00
|
|
|
* [How to submit a bug report](complement-bugreport.html)
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-01-06 19:24:19 -06:00
|
|
|
# External resources
|
2013-12-22 20:21:45 -06:00
|
|
|
|
2014-04-05 14:57:31 -05:00
|
|
|
* The Rust IRC channels on [irc.mozilla.org](http://irc.mozilla.org/)
|
|
|
|
* [`#rust`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust) - general discussion
|
|
|
|
* [`#rust-gamedev`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-gamedev) - game development
|
|
|
|
* [`#rust-internals`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-internals) - compiler and libraries
|
|
|
|
* [`#rust-osdev`](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-osdev) - operating system development
|
2014-01-15 19:19:36 -06:00
|
|
|
* The Rust community on [Reddit](http://reddit.com/r/rust)
|
|
|
|
* The Rust [wiki](http://github.com/mozilla/rust/wiki)
|