2014-08-01 23:31:22 +00:00
% Rust Documentation
2013-12-23 02:21:45 +00:00
2014-08-28 18:52:39 +00:00
Welcome to the Rust documentation! You can use the section headings above
to jump to any particular section.
# Getting Started
If you haven't seen Rust at all yet, the first thing you should read is the [30
minute intro](intro.html). It will give you an overview of the basic ideas of Rust
at a high level.
Once you know you really want to learn Rust, the next step is reading [the
guide](guide.html). It is a lengthy explanation of Rust, its syntax, and its
concepts. Upon completing the guide, you'll be an intermediate Rust developer,
and will have a good grasp of the fundamental ideas behind Rust.
# Community & Getting Help
If you need help with something, or just want to talk about Rust with others,
there's a few places you can do that:
The Rust IRC channels on [irc.mozilla.org ](http://irc.mozilla.org/ ) are the
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
Overflow](http://stackoverflow.com/questions/tagged/rust). Searching for your
problem might reveal someone who has asked it before!
There is an active [subreddit ](http://reddit.com/r/rust ) with lots of
discussion about Rust.
There is also a [developer forum ](http://discuss.rust-lang.org/ ), where the
development of Rust itself is discussed.
2013-12-23 02:21:45 +00:00
2014-09-10 20:57:00 +00:00
# Specification
Rust does not have an exact specification, but an effort to describe as much of
2014-09-19 17:45:20 +00:00
the language in as much detail as possible is in [the reference ](reference.html ).
2013-12-23 02:21:45 +00:00
2014-01-07 01:24:19 +00:00
# Guides
2013-12-23 02:21:45 +00:00
2014-08-28 18:52:39 +00:00
Rust Guides are in-depth looks at a particular topic that's relevant to Rust
development. If you're trying to figure out how to do something, there may be
a guide that can help you out:
2014-11-04 07:29:23 +00:00
* [Ownership ](guide-ownership.html )
2014-07-18 14:48:24 +00:00
* [Strings ](guide-strings.html )
2014-01-16 01:19:36 +00:00
* [Pointers ](guide-pointers.html )
2014-10-23 08:35:35 +00:00
* [Crates and modules ](guide-crates.html )
2015-01-04 04:16:04 +00:00
* [Threads and Communication ](guide-tasks.html )
2014-11-12 16:33:28 +00:00
* [Error Handling ](guide-error-handling.html )
2014-01-16 01:19:36 +00:00
* [Foreign Function Interface ](guide-ffi.html )
2014-08-01 23:31:22 +00:00
* [Writing Unsafe and Low-Level Code ](guide-unsafe.html )
2014-01-16 01:19:36 +00:00
* [Macros ](guide-macros.html )
* [Testing ](guide-testing.html )
2014-09-04 07:11:23 +00:00
* [Compiler Plugins ](guide-plugin.html )
2013-12-23 02:21:45 +00:00
2014-08-28 18:52:39 +00:00
# Tools
Rust's still a young language, so there isn't a ton of tooling yet, but the
tools we have are really nice.
[Cargo ](http://crates.io ) is Rust's package manager, and its website contains
lots of good documentation.
[The `rustdoc` manual ](rustdoc.html ) contains information about Rust's
documentation tool.
2014-05-23 05:01:44 +00:00
# FAQs
2014-08-28 18:52:39 +00:00
There are questions that are asked quite often, and so we've made FAQs for them:
2014-05-23 05:01:44 +00:00
* [Language Design FAQ ](complement-design-faq.html )
* [Language FAQ ](complement-lang-faq.html )
* [Project FAQ ](complement-project-faq.html )
* [How to submit a bug report ](complement-bugreport.html )
2014-08-28 18:52:39 +00:00
# The standard library
2014-09-13 18:44:08 +00:00
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.
2013-12-23 02:21:45 +00:00
2014-06-19 17:52:02 +00:00
# External documentation
2013-12-23 02:21:45 +00:00
2014-08-28 18:52:39 +00:00
*Note: While these are great resources for learning Rust, they may track a
particular version of Rust that is likely not exactly the same as that for
which this documentation was generated.*
2014-06-19 18:45:16 +00:00
2014-08-28 18:52:39 +00:00
* [Rust by Example] - Short examples of common tasks in Rust (tracks the master
branch).
* [Rust for Rubyists] - The first community tutorial for Rust. Tracks the last
stable release. Not just for Ruby programmers.
2014-06-19 17:52:02 +00:00
[Rust by Example]: http://rustbyexample.com/
2014-08-28 18:52:39 +00:00
[Rust for Rubyists]: http://www.rustforrubyists.com/