2014-08-01 18:31:22 -05:00
% Rust Documentation
2013-12-22 20:21:45 -06:00
2014-08-28 13:52:39 -05:00
Welcome to the Rust documentation! You can use the section headings above
to jump to any particular section.
# Getting Started
2015-05-08 15:18:04 -05:00
If you haven't seen Rust at all yet, the first thing you should read is the
introduction to [The Rust Programming Language ](book/index.html ). It'll give
you a good idea of what Rust is like.
The book provides a lengthy explanation of Rust, its syntax, and its
concepts. Upon completing the book, you'll be an intermediate Rust
developer, and will have a good grasp of the fundamental ideas behind
Rust.
2014-08-28 13:52:39 -05:00
2015-04-13 17:07:34 -05:00
[Rust By Example][rbe] was originally a community resource, but was then
donated to the Rust project. As the name implies, it teaches you Rust through a
series of small examples.
2015-04-15 12:58:00 -05:00
[rbe]: http://rustbyexample.com/
2015-04-13 17:07:34 -05:00
2015-09-06 07:25:01 -05:00
# Specification
Rust does not have an exact specification, but an effort to describe as much of
the language in as much detail as possible is in [the reference ](reference.html ).
2015-06-20 21:09:56 -05:00
# The Standard Library
We have [API documentation for the entire standard
library](std/index.html). There's a list of crates on the left with more
specific sections, or you can use the search bar at the top to search for
something if you know its name.
2015-09-06 07:25:01 -05:00
# Tools
Rust is still a young language, so there isn't a ton of tooling yet, but the
tools we have are really nice.
[Cargo ](https://crates.io ) is Rust's package manager, and its website contains
lots of good documentation.
[`rustdoc` ](book/documentation.html ) is used to generate documentation for Rust code.
2014-08-28 13:52:39 -05:00
# Community & Getting Help
If you need help with something, or just want to talk about Rust with others,
2015-05-12 06:21:26 -05:00
there are a few places you can do that:
2014-08-28 13:52:39 -05:00
2015-06-04 08:44:30 -05:00
The Rust IRC channels on [irc.mozilla.org ](irc://irc.mozilla.org/ ) are the
2014-08-28 13:52:39 -05:00
fastest way to get help.
[`#rust` ](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust ) is
the general discussion channel, and you'll find people willing to help you with
any questions you may have.
There are also three specialty channels:
[`#rust-gamedev` ](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-gamedev )
and
[`#rust-osdev` ](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-osdev )
are for game development and operating system development, respectively.
There's also
[`#rust-internals` ](http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-internals ), which is for discussion of the development of Rust itself.
You can also get help on [Stack
2015-06-04 08:44:30 -05:00
Overflow](https://stackoverflow.com/questions/tagged/rust). Searching for your
2014-08-28 13:52:39 -05:00
problem might reveal someone who has asked it before!
2015-06-04 08:44:30 -05:00
There is an active [subreddit ](https://reddit.com/r/rust ) with lots of
2015-01-29 17:49:00 -06:00
discussion and news about Rust.
2014-08-28 13:52:39 -05:00
2015-06-04 08:44:30 -05:00
There is also a [user forum ](https://users.rust-lang.org ), for all
2015-09-06 07:25:01 -05:00
user-oriented discussion, and a [developer
2015-06-04 08:44:30 -05:00
forum](https://internals.rust-lang.org/), where the development of Rust
2015-01-29 17:49:00 -06:00
itself is discussed.
2013-12-22 20:21:45 -06:00
2014-05-23 00:01:44 -05:00
# FAQs
2015-05-12 06:21:26 -05:00
There are questions that are asked quite often, so we've made FAQs for them:
2014-08-28 13:52:39 -05:00
2014-05-23 00:01:44 -05:00
* [Language Design FAQ ](complement-design-faq.html )
* [Language FAQ ](complement-lang-faq.html )
* [Project FAQ ](complement-project-faq.html )
2015-02-24 16:26:25 -06:00
* [How to submit a bug report ](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports )
2014-05-23 00:01:44 -05:00
2015-05-12 06:21:26 -05:00
# The Error Index
If you encounter an error while compiling your code you may be able to look it
up in the [Rust Compiler Error Index ](error-index.html ).
2015-05-24 10:37:11 -05:00
# Community Translations
Several projects have been started to translate the documentation into other
languages:
- [Russian ](https://github.com/kgv/rust_book_ru )
- [Korean ](https://github.com/rust-kr/doc.rust-kr.org )
- [Chinese ](https://github.com/KaiserY/rust-book-chinese )
2015-08-11 05:02:38 -05:00
- [Spanish ](https://goyox86.github.io/elpr )