@@ -5,55 +5,42 @@ title: Rust 语言文档 · Rust 程序设计语言
5
5
6
6
# Rust 语言文档
7
7
8
- If you haven't seen Rust at all yet, the first thing you should read
9
- is the introduction to the book, [ Rust 程序设计语言] [ book ] 。It will give you a good idea of what Rust is like,
10
- show you how to install it, and explain its syntax and concepts. Upon
11
- completing the book, you'll be an intermediate Rust developer, and
12
- will have a good grasp of the fundamental ideas behind Rust.
8
+ 如果您还不了解 Rust ,那么请先阅读 [ Rust 程序设计语言] [ book ] 。
9
+ 它将会帮您理清思路: Rust 是什么样的语言、如何按照它、以及它的语法概念(syntax and concepts)。
10
+ 在看完本书后,您将成为一个登堂入室(intermediate)的 Rust 开发人员,并将很好地理解 Rust 背后的基本理念。
13
11
14
12
## 学习 Rust
15
13
16
- [ Rust 程序设计语言] [ book ] . Also known as "The Book",
17
- The Rust Programming Language is the most comprehensive resource for
18
- all topics related to Rust, and is the primary official document of
19
- the language.
14
+ [ Rust 程序设计语言] [ book ] : Rust 相关的所有主题最全面的资料,重要的官方文档。
20
15
21
- [ 在实践中学 Rust] [ rbe ] 。 A collection of self-contained Rust
22
- examples on a variety of topics, executable in-browser.
16
+ [ 在实践中学 Rust] [ rbe ] : 关于各种主题的 Rust 示例的合集,可在线预览。
23
17
24
- [ Frequently asked questions ] [ faq ] .
18
+ [ Rust 高级教程 ] [ nomicon ] : 为高级 Rust 工程师准备的专门讲解如何编写不安全的Rust代码的书。
25
19
26
- [ The Rustonomicon] [ nomicon ] . An entire book dedicated to
27
- explaining how to write unsafe Rust code. It is for advanced Rust
28
- programmers.
20
+ [ 学习 Rust] : 由社区维护、收集的学习 Rust 资料合集。
29
21
30
- [ rust-learning] . A community-maintained collection of resources
31
- for learning Rust.
22
+ [ 常见问题] [ faq ]
32
23
33
24
[ book ] : https://kaisery.gitbooks.io/rust-book-chinese/content/
34
- [ rbe ] : http://rustbyexample.com
35
- [ faq ] : faq.html
25
+ [ rbe ] : https://rustwiki.org/rust-by-example/
36
26
[ nomicon ] : https://doc.rust-lang.org/nomicon/
37
27
[ rust-learning ] : https://github.com/ctjhoa/rust-learning
28
+ [ faq ] : faq.html
38
29
39
- ## References
30
+ ## 参考文献
40
31
41
- [ Standard Library API Reference] [ api ] . Documentation for the
42
- standard library.
32
+ [ 标准库] [ api ] : Rust 标准库文档
43
33
44
- [ The Rust Reference ] [ ref ] . While Rust does not have a
34
+ [ Rust 语言参考手册 ] [ ref ] . While Rust does not have a
45
35
specification, the reference tries to describe its working in
46
36
detail. It tends to be out of date.
47
37
48
- [ Syntax Index ] [ syn ] . This appendix from The Book contains examples
49
- of all syntax in Rust cross-referenced with the section of The Book
50
- that describes it.
38
+ [ 语法索引 ] [ syn ] : 本索引中包含 Rust 中与《Rust 程序设计语言》的部分交叉引用的所有语法示例。
39
+
40
+ [ Cargo 使用指导 ] [ cargo ] : Cargo(Rust 的包管理器)的文档。
51
41
52
- [ The Cargo Guide] [ cargo ] . The documentation for Cargo,
53
- Rust's package manager.
54
42
55
- [ Compiler Error Index] [ err ] . Extended explanations of
56
- the errors produced by the Rust compiler.
43
+ [ 编译器错误索引] [ err ] : 编译器生成错误报告的扩展说明。
57
44
58
45
[ Release Notes] [ release_notes ] . A recording of changes made during each release.
59
46
0 commit comments