]> git.lizzy.rs Git - rust.git/blob - src/doc/trpl/SUMMARY.md
Rollup merge of #24253 - steveklabnik:doc_primitive_types, r=alexcrichton
[rust.git] / src / doc / trpl / SUMMARY.md
1 # Summary
2
3 * [Getting Started](getting-started.md)
4     * [Installing Rust](installing-rust.md)
5     * [Hello, world!](hello-world.md)
6     * [Hello, Cargo!](hello-cargo.md)
7 * [Learn Rust](learn-rust.md)
8 * [Effective Rust](effective-rust.md)
9     * [The Stack and the Heap](the-stack-and-the-heap.md)
10     * [`Debug` and `Display`](debug-and-display.md)
11     * [Testing](testing.md)
12     * [Documentation](documentation.md)
13     * [Iterators](iterators.md)
14     * [Concurrency](concurrency.md)
15     * [Error Handling](error-handling.md)
16     * [FFI](ffi.md)
17     * [`Deref` coercions](deref-coercions.md)
18 * [Syntax and Semantics](syntax-and-semantics.md)
19     * [Variable Bindings](variable-bindings.md)
20     * [Functions](functions.md)
21     * [Primitive Types](primitive-types.md)
22     * [Comments](comments.md)
23     * [Structs](structs.md)
24     * [Mutability](mutability.md)
25     * [Method Syntax](method-syntax.md)
26     * [Enums](enums.md)
27     * [`if`](if.md)
28     * [Match](match.md)
29     * [Patterns](patterns.md)
30     * [`for` loops](for-loops.md)
31     * [`while` loops](while-loops.md)
32     * [Ownership](ownership.md)
33     * [References and Borrowing](references-and-borrowing.md)
34     * [Lifetimes](lifetimes.md)
35     * [Move semantics](move-semantics.md)
36     * [Drop](drop.md)
37     * [Vectors](vectors.md)
38     * [Strings](strings.md)
39     * [Traits](traits.md)
40     * [Operators and Overloading](operators-and-overloading.md)
41     * [Generics](generics.md)
42     * [Trait Objects](trait-objects.md)
43     * [Closures](closures.md)
44     * [Universal Function Call Syntax](ufcs.md)
45     * [Crates and Modules](crates-and-modules.md)
46     * [`static`](static.md)
47     * [`const`](const.md)
48     * [Tuple Structs](tuple-structs.md)
49     * [Attributes](attributes.md)
50     * [Conditional Compilation](conditional-compilation.md)
51     * [`type` aliases](type-aliases.md)
52     * [Casting between types](casting-between-types.md)
53     * [Associated Types](associated-types.md)
54     * [Unsized Types](unsized-types.md)
55     * [Macros](macros.md)
56     * [`unsafe` Code](unsafe-code.md)
57 * [Nightly Rust](nightly-rust.md)
58     * [Compiler Plugins](compiler-plugins.md)
59     * [Inline Assembly](inline-assembly.md)
60     * [No stdlib](no-stdlib.md)
61     * [Intrinsics](intrinsics.md)
62     * [Lang items](lang-items.md)
63     * [Link args](link-args.md)
64     * [Benchmark Tests](benchmark-tests.md)
65     * [Box Syntax and Patterns](box-syntax-and-patterns.md)
66 * [Glossary](glossary.md)
67 * [Academic Research](academic-research.md)