]> git.lizzy.rs Git - rust.git/blob - src/doc/reference.md
Rollup merge of #29677 - GuillaumeGomez:patch-3, r=Manishearth
[rust.git] / src / doc / reference.md
1 % The Rust Reference
2
3 # Introduction
4
5 This document is the primary reference for the Rust programming language. It
6 provides three kinds of material:
7
8   - Chapters that informally describe each language construct and their use.
9   - Chapters that informally describe the memory model, concurrency model,
10     runtime services, linkage model and debugging facilities.
11   - Appendix chapters providing rationale and references to languages that
12     influenced the design.
13
14 This document does not serve as an introduction to the language. Background
15 familiarity with the language is assumed. A separate [book] is available to
16 help acquire such background familiarity.
17
18 This document also does not serve as a reference to the [standard] library
19 included in the language distribution. Those libraries are documented
20 separately by extracting documentation attributes from their source code. Many
21 of the features that one might expect to be language features are library
22 features in Rust, so what you're looking for may be there, not here.
23
24 You may also be interested in the [grammar].
25
26 [book]: book/index.html
27 [standard]: std/index.html
28 [grammar]: grammar.html
29
30 # Notation
31
32 ## Unicode productions
33
34 A few productions in Rust's grammar permit Unicode code points outside the
35 ASCII range. We define these productions in terms of character properties
36 specified in the Unicode standard, rather than in terms of ASCII-range code
37 points. The grammar has a [Special Unicode Productions][unicodeproductions]
38 section that lists these productions.
39
40 [unicodeproductions]: grammar.html#special-unicode-productions
41
42 ## String table productions
43
44 Some rules in the grammar — notably [unary
45 operators](#unary-operator-expressions), [binary
46 operators](#binary-operator-expressions), and [keywords][keywords] — are
47 given in a simplified form: as a listing of a table of unquoted, printable
48 whitespace-separated strings. These cases form a subset of the rules regarding
49 the [token](#tokens) rule, and are assumed to be the result of a
50 lexical-analysis phase feeding the parser, driven by a DFA, operating over the
51 disjunction of all such string table entries.
52
53 [keywords]: grammar.html#keywords
54
55 When such a string enclosed in double-quotes (`"`) occurs inside the grammar,
56 it is an implicit reference to a single member of such a string table
57 production. See [tokens](#tokens) for more information.
58
59 # Lexical structure
60
61 ## Input format
62
63 Rust input is interpreted as a sequence of Unicode code points encoded in UTF-8.
64 Most Rust grammar rules are defined in terms of printable ASCII-range
65 code points, but a small number are defined in terms of Unicode properties or
66 explicit code point lists. [^inputformat]
67
68 [^inputformat]: Substitute definitions for the special Unicode productions are
69   provided to the grammar verifier, restricted to ASCII range, when verifying the
70   grammar in this document.
71
72 ## Identifiers
73
74 An identifier is any nonempty Unicode[^non_ascii_idents] string of the following form:
75
76 [^non_ascii_idents]: Non-ASCII characters in identifiers are currently feature
77   gated. This is expected to improve soon.
78
79 Either
80
81    * The first character has property `XID_start`
82    * The remaining characters have property `XID_continue`
83
84 Or
85
86    * The first character is `_`
87    * The identifier is more than one character, `_` alone is not an identifier
88    * The remaining characters have property `XID_continue`
89
90 that does _not_ occur in the set of [keywords][keywords].
91
92 > **Note**: `XID_start` and `XID_continue` as character properties cover the
93 > character ranges used to form the more familiar C and Java language-family
94 > identifiers.
95
96 ## Comments
97
98 Comments in Rust code follow the general C++ style of line (`//`) and
99 block (`/* ... */`) comment forms. Nested block comments are supported.
100
101 Line comments beginning with exactly _three_ slashes (`///`), and block
102 comments beginning with exactly one repeated asterisk in the block-open
103 sequence (`/**`), are interpreted as a special syntax for `doc`
104 [attributes](#attributes). That is, they are equivalent to writing
105 `#[doc="..."]` around the body of the comment, i.e., `/// Foo` turns into
106 `#[doc="Foo"]`.
107
108 Line comments beginning with `//!` and block comments beginning with `/*!` are
109 doc comments that apply to the parent of the comment, rather than the item
110 that follows.  That is, they are equivalent to writing `#![doc="..."]` around
111 the body of the comment. `//!` comments are usually used to document
112 modules that occupy a source file.
113
114 Non-doc comments are interpreted as a form of whitespace.
115
116 ## Whitespace
117
118 Whitespace is any non-empty string containing only the following characters:
119
120 - `U+0020` (space, `' '`)
121 - `U+0009` (tab, `'\t'`)
122 - `U+000A` (LF, `'\n'`)
123 - `U+000D` (CR, `'\r'`)
124
125 Rust is a "free-form" language, meaning that all forms of whitespace serve only
126 to separate _tokens_ in the grammar, and have no semantic significance.
127
128 A Rust program has identical meaning if each whitespace element is replaced
129 with any other legal whitespace element, such as a single space character.
130
131 ## Tokens
132
133 Tokens are primitive productions in the grammar defined by regular
134 (non-recursive) languages. "Simple" tokens are given in [string table
135 production](#string-table-productions) form, and occur in the rest of the
136 grammar as double-quoted strings. Other tokens have exact rules given.
137
138 ### Literals
139
140 A literal is an expression consisting of a single token, rather than a sequence
141 of tokens, that immediately and directly denotes the value it evaluates to,
142 rather than referring to it by name or some other evaluation rule. A literal is
143 a form of constant expression, so is evaluated (primarily) at compile time.
144
145 #### Examples
146
147 ##### Characters and strings
148
149 |                                              | Example         | `#` sets   | Characters  | Escapes             |
150 |----------------------------------------------|-----------------|------------|-------------|---------------------|
151 | [Character](#character-literals)             | `'H'`           | `N/A`      | All Unicode | `\'` & [Byte](#byte-escapes) & [Unicode](#unicode-escapes) |
152 | [String](#string-literals)                   | `"hello"`       | `N/A`      | All Unicode | `\"` & [Byte](#byte-escapes) & [Unicode](#unicode-escapes) |
153 | [Raw](#raw-string-literals)                  | `r#"hello"#`    | `0...`     | All Unicode | `N/A`                                                      |
154 | [Byte](#byte-literals)                       | `b'H'`          | `N/A`      | All ASCII   | `\'` & [Byte](#byte-escapes)                               |
155 | [Byte string](#byte-string-literals)         | `b"hello"`      | `N/A`      | All ASCII   | `\"` & [Byte](#byte-escapes)                               |
156 | [Raw byte string](#raw-byte-string-literals) | `br#"hello"#`   | `0...`     | All ASCII   | `N/A`                                                      |
157
158 ##### Byte escapes
159
160 |   | Name |
161 |---|------|
162 | `\x7F` | 8-bit character code (exactly 2 digits) |
163 | `\n` | Newline |
164 | `\r` | Carriage return |
165 | `\t` | Tab |
166 | `\\` | Backslash |
167
168 ##### Unicode escapes
169 |   | Name |
170 |---|------|
171 | `\u{7FFF}` | 24-bit Unicode character code (up to 6 digits) |
172
173 ##### Numbers
174
175 | [Number literals](#number-literals)`*` | Example | Exponentiation | Suffixes |
176 |----------------------------------------|---------|----------------|----------|
177 | Decimal integer | `98_222` | `N/A` | Integer suffixes |
178 | Hex integer | `0xff` | `N/A` | Integer suffixes |
179 | Octal integer | `0o77` | `N/A` | Integer suffixes |
180 | Binary integer | `0b1111_0000` | `N/A` | Integer suffixes |
181 | Floating-point | `123.0E+77` | `Optional` | Floating-point suffixes |
182
183 `*` All number literals allow `_` as a visual separator: `1_234.0E+18f64`
184
185 ##### Suffixes
186 | Integer | Floating-point |
187 |---------|----------------|
188 | `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`, `isize`, `usize` | `f32`, `f64` |
189
190 #### Character and string literals
191
192 ##### Character literals
193
194 A _character literal_ is a single Unicode character enclosed within two
195 `U+0027` (single-quote) characters, with the exception of `U+0027` itself,
196 which must be _escaped_ by a preceding `U+005C` character (`\`).
197
198 ##### String literals
199
200 A _string literal_ is a sequence of any Unicode characters enclosed within two
201 `U+0022` (double-quote) characters, with the exception of `U+0022` itself,
202 which must be _escaped_ by a preceding `U+005C` character (`\`).
203
204 Line-break characters are allowed in string literals. Normally they represent
205 themselves (i.e. no translation), but as a special exception, when a `U+005C`
206 character (`\`) occurs immediately before the newline, the `U+005C` character,
207 the newline, and all whitespace at the beginning of the next line are ignored.
208 Thus `a` and `b` are equal:
209
210 ```rust
211 let a = "foobar";
212 let b = "foo\
213          bar";
214
215 assert_eq!(a,b);
216 ```
217
218 ##### Character escapes
219
220 Some additional _escapes_ are available in either character or non-raw string
221 literals. An escape starts with a `U+005C` (`\`) and continues with one of the
222 following forms:
223
224 * An _8-bit code point escape_ starts with `U+0078` (`x`) and is
225   followed by exactly two _hex digits_. It denotes the Unicode code point
226   equal to the provided hex value.
227 * A _24-bit code point escape_ starts with `U+0075` (`u`) and is followed
228   by up to six _hex digits_ surrounded by braces `U+007B` (`{`) and `U+007D`
229   (`}`). It denotes the Unicode code point equal to the provided hex value.
230 * A _whitespace escape_ is one of the characters `U+006E` (`n`), `U+0072`
231   (`r`), or `U+0074` (`t`), denoting the Unicode values `U+000A` (LF),
232   `U+000D` (CR) or `U+0009` (HT) respectively.
233 * The _backslash escape_ is the character `U+005C` (`\`) which must be
234   escaped in order to denote *itself*.
235
236 ##### Raw string literals
237
238 Raw string literals do not process any escapes. They start with the character
239 `U+0072` (`r`), followed by zero or more of the character `U+0023` (`#`) and a
240 `U+0022` (double-quote) character. The _raw string body_ can contain any sequence
241 of Unicode characters and is terminated only by another `U+0022` (double-quote)
242 character, followed by the same number of `U+0023` (`#`) characters that preceded
243 the opening `U+0022` (double-quote) character.
244
245 All Unicode characters contained in the raw string body represent themselves,
246 the characters `U+0022` (double-quote) (except when followed by at least as
247 many `U+0023` (`#`) characters as were used to start the raw string literal) or
248 `U+005C` (`\`) do not have any special meaning.
249
250 Examples for string literals:
251
252 ```
253 "foo"; r"foo";                     // foo
254 "\"foo\""; r#""foo""#;             // "foo"
255
256 "foo #\"# bar";
257 r##"foo #"# bar"##;                // foo #"# bar
258
259 "\x52"; "R"; r"R";                 // R
260 "\\x52"; r"\x52";                  // \x52
261 ```
262
263 #### Byte and byte string literals
264
265 ##### Byte literals
266
267 A _byte literal_ is a single ASCII character (in the `U+0000` to `U+007F`
268 range) or a single _escape_ preceded by the characters `U+0062` (`b`) and
269 `U+0027` (single-quote), and followed by the character `U+0027`. If the character
270 `U+0027` is present within the literal, it must be _escaped_ by a preceding
271 `U+005C` (`\`) character. It is equivalent to a `u8` unsigned 8-bit integer
272 _number literal_.
273
274 ##### Byte string literals
275
276 A non-raw _byte string literal_ is a sequence of ASCII characters and _escapes_,
277 preceded by the characters `U+0062` (`b`) and `U+0022` (double-quote), and
278 followed by the character `U+0022`. If the character `U+0022` is present within
279 the literal, it must be _escaped_ by a preceding `U+005C` (`\`) character.
280 Alternatively, a byte string literal can be a _raw byte string literal_, defined
281 below. A byte string literal of length `n` is equivalent to a `&'static [u8; n]` borrowed fixed-sized array
282 of unsigned 8-bit integers.
283
284 Some additional _escapes_ are available in either byte or non-raw byte string
285 literals. An escape starts with a `U+005C` (`\`) and continues with one of the
286 following forms:
287
288 * A _byte escape_ escape starts with `U+0078` (`x`) and is
289   followed by exactly two _hex digits_. It denotes the byte
290   equal to the provided hex value.
291 * A _whitespace escape_ is one of the characters `U+006E` (`n`), `U+0072`
292   (`r`), or `U+0074` (`t`), denoting the bytes values `0x0A` (ASCII LF),
293   `0x0D` (ASCII CR) or `0x09` (ASCII HT) respectively.
294 * The _backslash escape_ is the character `U+005C` (`\`) which must be
295   escaped in order to denote its ASCII encoding `0x5C`.
296
297 ##### Raw byte string literals
298
299 Raw byte string literals do not process any escapes. They start with the
300 character `U+0062` (`b`), followed by `U+0072` (`r`), followed by zero or more
301 of the character `U+0023` (`#`), and a `U+0022` (double-quote) character. The
302 _raw string body_ can contain any sequence of ASCII characters and is terminated
303 only by another `U+0022` (double-quote) character, followed by the same number of
304 `U+0023` (`#`) characters that preceded the opening `U+0022` (double-quote)
305 character. A raw byte string literal can not contain any non-ASCII byte.
306
307 All characters contained in the raw string body represent their ASCII encoding,
308 the characters `U+0022` (double-quote) (except when followed by at least as
309 many `U+0023` (`#`) characters as were used to start the raw string literal) or
310 `U+005C` (`\`) do not have any special meaning.
311
312 Examples for byte string literals:
313
314 ```
315 b"foo"; br"foo";                     // foo
316 b"\"foo\""; br#""foo""#;             // "foo"
317
318 b"foo #\"# bar";
319 br##"foo #"# bar"##;                 // foo #"# bar
320
321 b"\x52"; b"R"; br"R";                // R
322 b"\\x52"; br"\x52";                  // \x52
323 ```
324
325 #### Number literals
326
327 A _number literal_ is either an _integer literal_ or a _floating-point
328 literal_. The grammar for recognizing the two kinds of literals is mixed.
329
330 ##### Integer literals
331
332 An _integer literal_ has one of four forms:
333
334 * A _decimal literal_ starts with a *decimal digit* and continues with any
335   mixture of *decimal digits* and _underscores_.
336 * A _hex literal_ starts with the character sequence `U+0030` `U+0078`
337   (`0x`) and continues as any mixture of hex digits and underscores.
338 * An _octal literal_ starts with the character sequence `U+0030` `U+006F`
339   (`0o`) and continues as any mixture of octal digits and underscores.
340 * A _binary literal_ starts with the character sequence `U+0030` `U+0062`
341   (`0b`) and continues as any mixture of binary digits and underscores.
342
343 Like any literal, an integer literal may be followed (immediately,
344 without any spaces) by an _integer suffix_, which forcibly sets the
345 type of the literal. The integer suffix must be the name of one of the
346 integral types: `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`,
347 `isize`, or `usize`.
348
349 The type of an _unsuffixed_ integer literal is determined by type inference:
350
351 * If an integer type can be _uniquely_ determined from the surrounding
352   program context, the unsuffixed integer literal has that type.
353
354 * If the program context under-constrains the type, it defaults to the
355   signed 32-bit integer `i32`.
356
357 * If the program context over-constrains the type, it is considered a
358   static type error.
359
360 Examples of integer literals of various forms:
361
362 ```
363 123i32;                            // type i32
364 123u32;                            // type u32
365 123_u32;                           // type u32
366 0xff_u8;                           // type u8
367 0o70_i16;                          // type i16
368 0b1111_1111_1001_0000_i32;         // type i32
369 0usize;                            // type usize
370 ```
371
372 ##### Floating-point literals
373
374 A _floating-point literal_ has one of two forms:
375
376 * A _decimal literal_ followed by a period character `U+002E` (`.`). This is
377   optionally followed by another decimal literal, with an optional _exponent_.
378 * A single _decimal literal_ followed by an _exponent_.
379
380 Like integer literals, a floating-point literal may be followed by a
381 suffix, so long as the pre-suffix part does not end with `U+002E` (`.`).
382 The suffix forcibly sets the type of the literal. There are two valid
383 _floating-point suffixes_, `f32` and `f64` (the 32-bit and 64-bit floating point
384 types), which explicitly determine the type of the literal.
385
386 The type of an _unsuffixed_ floating-point literal is determined by
387 type inference:
388
389 * If a floating-point type can be _uniquely_ determined from the
390   surrounding program context, the unsuffixed floating-point literal
391   has that type.
392
393 * If the program context under-constrains the type, it defaults to `f64`.
394
395 * If the program context over-constrains the type, it is considered a
396   static type error.
397
398 Examples of floating-point literals of various forms:
399
400 ```
401 123.0f64;        // type f64
402 0.1f64;          // type f64
403 0.1f32;          // type f32
404 12E+99_f64;      // type f64
405 let x: f64 = 2.; // type f64
406 ```
407
408 This last example is different because it is not possible to use the suffix
409 syntax with a floating point literal ending in a period. `2.f64` would attempt
410 to call a method named `f64` on `2`.
411
412 The representation semantics of floating-point numbers are described in
413 ["Machine Types"](#machine-types).
414
415 #### Boolean literals
416
417 The two values of the boolean type are written `true` and `false`.
418
419 ### Symbols
420
421 Symbols are a general class of printable [tokens](#tokens) that play structural
422 roles in a variety of grammar productions. They are a
423 set of remaining miscellaneous printable tokens that do not
424 otherwise appear as [unary operators](#unary-operator-expressions), [binary
425 operators](#binary-operator-expressions), or [keywords][keywords].
426 They are catalogued in [the Symbols section][symbols] of the Grammar document.
427
428 [symbols]: grammar.html#symbols
429
430
431 ## Paths
432
433 A _path_ is a sequence of one or more path components _logically_ separated by
434 a namespace qualifier (`::`). If a path consists of only one component, it may
435 refer to either an [item](#items) or a [variable](#variables) in a local control
436 scope. If a path has multiple components, it refers to an item.
437
438 Every item has a _canonical path_ within its crate, but the path naming an item
439 is only meaningful within a given crate. There is no global namespace across
440 crates; an item's canonical path merely identifies it within the crate.
441
442 Two examples of simple paths consisting of only identifier components:
443
444 ```{.ignore}
445 x;
446 x::y::z;
447 ```
448
449 Path components are usually [identifiers](#identifiers), but they may
450 also include angle-bracket-enclosed lists of type arguments. In
451 [expression](#expressions) context, the type argument list is given
452 after a `::` namespace qualifier in order to disambiguate it from a
453 relational expression involving the less-than symbol (`<`). In type
454 expression context, the final namespace qualifier is omitted.
455
456 Two examples of paths with type arguments:
457
458 ```
459 # struct HashMap<K, V>(K,V);
460 # fn f() {
461 # fn id<T>(t: T) -> T { t }
462 type T = HashMap<i32,String>; // Type arguments used in a type expression
463 let x  = id::<i32>(10);       // Type arguments used in a call expression
464 # }
465 ```
466
467 Paths can be denoted with various leading qualifiers to change the meaning of
468 how it is resolved:
469
470 * Paths starting with `::` are considered to be global paths where the
471   components of the path start being resolved from the crate root. Each
472   identifier in the path must resolve to an item.
473
474 ```rust
475 mod a {
476     pub fn foo() {}
477 }
478 mod b {
479     pub fn foo() {
480         ::a::foo(); // call a's foo function
481     }
482 }
483 # fn main() {}
484 ```
485
486 * Paths starting with the keyword `super` begin resolution relative to the
487   parent module. Each further identifier must resolve to an item.
488
489 ```rust
490 mod a {
491     pub fn foo() {}
492 }
493 mod b {
494     pub fn foo() {
495         super::a::foo(); // call a's foo function
496     }
497 }
498 # fn main() {}
499 ```
500
501 * Paths starting with the keyword `self` begin resolution relative to the
502   current module. Each further identifier must resolve to an item.
503
504 ```rust
505 fn foo() {}
506 fn bar() {
507     self::foo();
508 }
509 # fn main() {}
510 ```
511
512 # Syntax extensions
513
514 A number of minor features of Rust are not central enough to have their own
515 syntax, and yet are not implementable as functions. Instead, they are given
516 names, and invoked through a consistent syntax: `some_extension!(...)`.
517
518 Users of `rustc` can define new syntax extensions in two ways:
519
520 * [Compiler plugins][plugin] can include arbitrary Rust code that
521   manipulates syntax trees at compile time. Note that the interface
522   for compiler plugins is considered highly unstable.
523
524 * [Macros](book/macros.html) define new syntax in a higher-level,
525   declarative way.
526
527 ## Macros
528
529 `macro_rules` allows users to define syntax extension in a declarative way.  We
530 call such extensions "macros by example" or simply "macros" — to be distinguished
531 from the "procedural macros" defined in [compiler plugins][plugin].
532
533 Currently, macros can expand to expressions, statements, items, or patterns.
534
535 (A `sep_token` is any token other than `*` and `+`. A `non_special_token` is
536 any token other than a delimiter or `$`.)
537
538 The macro expander looks up macro invocations by name, and tries each macro
539 rule in turn. It transcribes the first successful match. Matching and
540 transcription are closely related to each other, and we will describe them
541 together.
542
543 ### Macro By Example
544
545 The macro expander matches and transcribes every token that does not begin with
546 a `$` literally, including delimiters. For parsing reasons, delimiters must be
547 balanced, but they are otherwise not special.
548
549 In the matcher, `$` _name_ `:` _designator_ matches the nonterminal in the Rust
550 syntax named by _designator_. Valid designators are:
551
552 * `item`: an [item](#items)
553 * `block`: a [block](#block-expressions)
554 * `stmt`: a [statement](#statements)
555 * `pat`: a [pattern](#match-expressions)
556 * `expr`: an [expression](#expressions)
557 * `ty`: a [type](#types)
558 * `ident`: an [identifier](#identifiers)
559 * `path`: a [path](#paths)
560 * `tt`: either side of the `=>` in macro rules
561 * `meta`: the contents of an [attribute](#attributes)
562
563 In the transcriber, the
564 designator is already known, and so only the name of a matched nonterminal comes
565 after the dollar sign.
566
567 In both the matcher and transcriber, the Kleene star-like operator indicates
568 repetition. The Kleene star operator consists of `$` and parentheses, optionally
569 followed by a separator token, followed by `*` or `+`. `*` means zero or more
570 repetitions, `+` means at least one repetition. The parentheses are not matched or
571 transcribed. On the matcher side, a name is bound to _all_ of the names it
572 matches, in a structure that mimics the structure of the repetition encountered
573 on a successful match. The job of the transcriber is to sort that structure
574 out.
575
576 The rules for transcription of these repetitions are called "Macro By Example".
577 Essentially, one "layer" of repetition is discharged at a time, and all of them
578 must be discharged by the time a name is transcribed. Therefore, `( $( $i:ident
579 ),* ) => ( $i )` is an invalid macro, but `( $( $i:ident ),* ) => ( $( $i:ident
580 ),*  )` is acceptable (if trivial).
581
582 When Macro By Example encounters a repetition, it examines all of the `$`
583 _name_ s that occur in its body. At the "current layer", they all must repeat
584 the same number of times, so ` ( $( $i:ident ),* ; $( $j:ident ),* ) => ( $(
585 ($i,$j) ),* )` is valid if given the argument `(a,b,c ; d,e,f)`, but not
586 `(a,b,c ; d,e)`. The repetition walks through the choices at that layer in
587 lockstep, so the former input transcribes to `(a,d), (b,e), (c,f)`.
588
589 Nested repetitions are allowed.
590
591 ### Parsing limitations
592
593 The parser used by the macro system is reasonably powerful, but the parsing of
594 Rust syntax is restricted in two ways:
595
596 1. Macro definitions are required to include suitable separators after parsing
597    expressions and other bits of the Rust grammar. This implies that
598    a macro definition like `$i:expr [ , ]` is not legal, because `[` could be part
599    of an expression. A macro definition like `$i:expr,` or `$i:expr;` would be legal,
600    however, because `,` and `;` are legal separators. See [RFC 550] for more information.
601 2. The parser must have eliminated all ambiguity by the time it reaches a `$`
602    _name_ `:` _designator_. This requirement most often affects name-designator
603    pairs when they occur at the beginning of, or immediately after, a `$(...)*`;
604    requiring a distinctive token in front can solve the problem.
605
606 [RFC 550]: https://github.com/rust-lang/rfcs/blob/master/text/0550-macro-future-proofing.md
607
608 # Crates and source files
609
610 Although Rust, like any other language, can be implemented by an interpreter as
611 well as a compiler, the only existing implementation is a compiler,
612 and the language has
613 always been designed to be compiled. For these reasons, this section assumes a
614 compiler.
615
616 Rust's semantics obey a *phase distinction* between compile-time and
617 run-time.[^phase-distinction] Semantic rules that have a *static
618 interpretation* govern the success or failure of compilation, while
619 semantic rules
620 that have a *dynamic interpretation* govern the behavior of the program at
621 run-time.
622
623 [^phase-distinction]: This distinction would also exist in an interpreter.
624     Static checks like syntactic analysis, type checking, and lints should
625     happen before the program is executed regardless of when it is executed.
626
627 The compilation model centers on artifacts called _crates_. Each compilation
628 processes a single crate in source form, and if successful, produces a single
629 crate in binary form: either an executable or some sort of
630 library.[^cratesourcefile]
631
632 [^cratesourcefile]: A crate is somewhat analogous to an *assembly* in the
633     ECMA-335 CLI model, a *library* in the SML/NJ Compilation Manager, a *unit*
634     in the Owens and Flatt module system, or a *configuration* in Mesa.
635
636 A _crate_ is a unit of compilation and linking, as well as versioning,
637 distribution and runtime loading. A crate contains a _tree_ of nested
638 [module](#modules) scopes. The top level of this tree is a module that is
639 anonymous (from the point of view of paths within the module) and any item
640 within a crate has a canonical [module path](#paths) denoting its location
641 within the crate's module tree.
642
643 The Rust compiler is always invoked with a single source file as input, and
644 always produces a single output crate. The processing of that source file may
645 result in other source files being loaded as modules. Source files have the
646 extension `.rs`.
647
648 A Rust source file describes a module, the name and location of which &mdash;
649 in the module tree of the current crate &mdash; are defined from outside the
650 source file: either by an explicit `mod_item` in a referencing source file, or
651 by the name of the crate itself. Every source file is a module, but not every
652 module needs its own source file: [module definitions](#modules) can be nested
653 within one file.
654
655 Each source file contains a sequence of zero or more `item` definitions, and
656 may optionally begin with any number of [attributes](#items-and-attributes)
657 that apply to the containing module, most of which influence the behavior of
658 the compiler. The anonymous crate module can have additional attributes that
659 apply to the crate as a whole.
660
661 ```no_run
662 // Specify the crate name.
663 #![crate_name = "projx"]
664
665 // Specify the type of output artifact.
666 #![crate_type = "lib"]
667
668 // Turn on a warning.
669 // This can be done in any module, not just the anonymous crate module.
670 #![warn(non_camel_case_types)]
671 ```
672
673 A crate that contains a `main` function can be compiled to an executable. If a
674 `main` function is present, its return type must be [`unit`](#tuple-types)
675 and it must take no arguments.
676
677 # Items and attributes
678
679 Crates contain [items](#items), each of which may have some number of
680 [attributes](#attributes) attached to it.
681
682 ## Items
683
684 An _item_ is a component of a crate. Items are organized within a crate by a
685 nested set of [modules](#modules). Every crate has a single "outermost"
686 anonymous module; all further items within the crate have [paths](#paths)
687 within the module tree of the crate.
688
689 Items are entirely determined at compile-time, generally remain fixed during
690 execution, and may reside in read-only memory.
691
692 There are several kinds of item:
693
694 * [`extern crate` declarations](#extern-crate-declarations)
695 * [`use` declarations](#use-declarations)
696 * [modules](#modules)
697 * [functions](#functions)
698 * [type definitions](grammar.html#type-definitions)
699 * [structs](#structs)
700 * [enumerations](#enumerations)
701 * [constant items](#constant-items)
702 * [static items](#static-items)
703 * [traits](#traits)
704 * [implementations](#implementations)
705
706 Some items form an implicit scope for the declaration of sub-items. In other
707 words, within a function or module, declarations of items can (in many cases)
708 be mixed with the statements, control blocks, and similar artifacts that
709 otherwise compose the item body. The meaning of these scoped items is the same
710 as if the item was declared outside the scope &mdash; it is still a static item
711 &mdash; except that the item's *path name* within the module namespace is
712 qualified by the name of the enclosing item, or is private to the enclosing
713 item (in the case of functions). The grammar specifies the exact locations in
714 which sub-item declarations may appear.
715
716 ### Type Parameters
717
718 All items except modules, constants and statics may be *parameterized* by type.
719 Type parameters are given as a comma-separated list of identifiers enclosed in
720 angle brackets (`<...>`), after the name of the item and before its definition.
721 The type parameters of an item are considered "part of the name", not part of
722 the type of the item. A referencing [path](#paths) must (in principle) provide
723 type arguments as a list of comma-separated types enclosed within angle
724 brackets, in order to refer to the type-parameterized item. In practice, the
725 type-inference system can usually infer such argument types from context. There
726 are no general type-parametric types, only type-parametric items. That is, Rust
727 has no notion of type abstraction: there are no higher-ranked (or "forall") types
728 abstracted over other types, though higher-ranked types do exist for lifetimes.
729
730 ### Modules
731
732 A module is a container for zero or more [items](#items).
733
734 A _module item_ is a module, surrounded in braces, named, and prefixed with the
735 keyword `mod`. A module item introduces a new, named module into the tree of
736 modules making up a crate. Modules can nest arbitrarily.
737
738 An example of a module:
739
740 ```
741 mod math {
742     type Complex = (f64, f64);
743     fn sin(f: f64) -> f64 {
744         /* ... */
745 # panic!();
746     }
747     fn cos(f: f64) -> f64 {
748         /* ... */
749 # panic!();
750     }
751     fn tan(f: f64) -> f64 {
752         /* ... */
753 # panic!();
754     }
755 }
756 ```
757
758 Modules and types share the same namespace. Declaring a named type with
759 the same name as a module in scope is forbidden: that is, a type definition,
760 trait, struct, enumeration, or type parameter can't shadow the name of a module
761 in scope, or vice versa.
762
763 A module without a body is loaded from an external file, by default with the
764 same name as the module, plus the `.rs` extension. When a nested submodule is
765 loaded from an external file, it is loaded from a subdirectory path that
766 mirrors the module hierarchy.
767
768 ```{.ignore}
769 // Load the `vec` module from `vec.rs`
770 mod vec;
771
772 mod thread {
773     // Load the `local_data` module from `thread/local_data.rs`
774     // or `thread/local_data/mod.rs`.
775     mod local_data;
776 }
777 ```
778
779 The directories and files used for loading external file modules can be
780 influenced with the `path` attribute.
781
782 ```{.ignore}
783 #[path = "thread_files"]
784 mod thread {
785     // Load the `local_data` module from `thread_files/tls.rs`
786     #[path = "tls.rs"]
787     mod local_data;
788 }
789 ```
790
791 #### Extern crate declarations
792
793 An _`extern crate` declaration_ specifies a dependency on an external crate.
794 The external crate is then bound into the declaring scope as the `ident`
795 provided in the `extern_crate_decl`.
796
797 The external crate is resolved to a specific `soname` at compile time, and a
798 runtime linkage requirement to that `soname` is passed to the linker for
799 loading at runtime. The `soname` is resolved at compile time by scanning the
800 compiler's library path and matching the optional `crateid` provided against
801 the `crateid` attributes that were declared on the external crate when it was
802 compiled. If no `crateid` is provided, a default `name` attribute is assumed,
803 equal to the `ident` given in the `extern_crate_decl`.
804
805 Three examples of `extern crate` declarations:
806
807 ```{.ignore}
808 extern crate pcre;
809
810 extern crate std; // equivalent to: extern crate std as std;
811
812 extern crate std as ruststd; // linking to 'std' under another name
813 ```
814
815 #### Use declarations
816
817 A _use declaration_ creates one or more local name bindings synonymous with
818 some other [path](#paths). Usually a `use` declaration is used to shorten the
819 path required to refer to a module item. These declarations may appear at the
820 top of [modules](#modules) and [blocks](grammar.html#block-expressions).
821
822 > **Note**: Unlike in many languages,
823 > `use` declarations in Rust do *not* declare linkage dependency with external crates.
824 > Rather, [`extern crate` declarations](#extern-crate-declarations) declare linkage dependencies.
825
826 Use declarations support a number of convenient shortcuts:
827
828 * Rebinding the target name as a new local name, using the syntax `use p::q::r as x;`
829 * Simultaneously binding a list of paths differing only in their final element,
830   using the glob-like brace syntax `use a::b::{c,d,e,f};`
831 * Binding all paths matching a given prefix, using the asterisk wildcard syntax
832   `use a::b::*;`
833 * Simultaneously binding a list of paths differing only in their final element
834   and their immediate parent module, using the `self` keyword, such as
835   `use a::b::{self, c, d};`
836
837 An example of `use` declarations:
838
839 ```rust
840 use std::option::Option::{Some, None};
841 use std::collections::hash_map::{self, HashMap};
842
843 fn foo<T>(_: T){}
844 fn bar(map1: HashMap<String, usize>, map2: hash_map::HashMap<String, usize>){}
845
846 fn main() {
847     // Equivalent to 'foo(vec![std::option::Option::Some(1.0f64),
848     // std::option::Option::None]);'
849     foo(vec![Some(1.0f64), None]);
850
851     // Both `hash_map` and `HashMap` are in scope.
852     let map1 = HashMap::new();
853     let map2 = hash_map::HashMap::new();
854     bar(map1, map2);
855 }
856 ```
857
858 Like items, `use` declarations are private to the containing module, by
859 default. Also like items, a `use` declaration can be public, if qualified by
860 the `pub` keyword. Such a `use` declaration serves to _re-export_ a name. A
861 public `use` declaration can therefore _redirect_ some public name to a
862 different target definition: even a definition with a private canonical path,
863 inside a different module. If a sequence of such redirections form a cycle or
864 cannot be resolved unambiguously, they represent a compile-time error.
865
866 An example of re-exporting:
867
868 ```
869 # fn main() { }
870 mod quux {
871     pub use quux::foo::{bar, baz};
872
873     pub mod foo {
874         pub fn bar() { }
875         pub fn baz() { }
876     }
877 }
878 ```
879
880 In this example, the module `quux` re-exports two public names defined in
881 `foo`.
882
883 Also note that the paths contained in `use` items are relative to the crate
884 root. So, in the previous example, the `use` refers to `quux::foo::{bar,
885 baz}`, and not simply to `foo::{bar, baz}`. This also means that top-level
886 module declarations should be at the crate root if direct usage of the declared
887 modules within `use` items is desired. It is also possible to use `self` and
888 `super` at the beginning of a `use` item to refer to the current and direct
889 parent modules respectively. All rules regarding accessing declared modules in
890 `use` declarations apply to both module declarations and `extern crate`
891 declarations.
892
893 An example of what will and will not work for `use` items:
894
895 ```
896 # #![allow(unused_imports)]
897 use foo::baz::foobaz;    // good: foo is at the root of the crate
898
899 mod foo {
900
901     mod example {
902         pub mod iter {}
903     }
904
905     use foo::example::iter; // good: foo is at crate root
906 //  use example::iter;      // bad:  example is not at the crate root
907     use self::baz::foobaz;  // good: self refers to module 'foo'
908     use foo::bar::foobar;   // good: foo is at crate root
909
910     pub mod bar {
911         pub fn foobar() { }
912     }
913
914     pub mod baz {
915         use super::bar::foobar; // good: super refers to module 'foo'
916         pub fn foobaz() { }
917     }
918 }
919
920 fn main() {}
921 ```
922
923 ### Functions
924
925 A _function item_ defines a sequence of [statements](#statements) and a
926 final [expression](#expressions), along with a name and a set of
927 parameters. Other than a name, all these are optional.
928 Functions are declared with the keyword `fn`. Functions may declare a
929 set of *input* [*variables*](#variables) as parameters, through which the caller
930 passes arguments into the function, and the *output* [*type*](#types)
931 of the value the function will return to its caller on completion.
932
933 A function may also be copied into a first-class *value*, in which case the
934 value has the corresponding [*function type*](#function-types), and can be used
935 otherwise exactly as a function item (with a minor additional cost of calling
936 the function indirectly).
937
938 Every control path in a function logically ends with a `return` expression or a
939 diverging expression. If the outermost block of a function has a
940 value-producing expression in its final-expression position, that expression is
941 interpreted as an implicit `return` expression applied to the final-expression.
942
943 An example of a function:
944
945 ```
946 fn add(x: i32, y: i32) -> i32 {
947     x + y
948 }
949 ```
950
951 As with `let` bindings, function arguments are irrefutable patterns, so any
952 pattern that is valid in a let binding is also valid as an argument.
953
954 ```
955 fn first((value, _): (i32, i32)) -> i32 { value }
956 ```
957
958
959 #### Generic functions
960
961 A _generic function_ allows one or more _parameterized types_ to appear in its
962 signature. Each type parameter must be explicitly declared, in an
963 angle-bracket-enclosed, comma-separated list following the function name.
964
965 ```rust,ignore
966 // foo is generic over A and B
967
968 fn foo<A, B>(x: A, y: B) {
969 ```
970
971 Inside the function signature and body, the name of the type parameter can be
972 used as a type name. [Trait](#traits) bounds can be specified for type parameters
973 to allow methods with that trait to be called on values of that type. This is
974 specified using the `where` syntax:
975
976 ```rust,ignore
977 fn foo<T>(x: T) where T: Debug {
978 ```
979
980 When a generic function is referenced, its type is instantiated based on the
981 context of the reference. For example, calling the `foo` function here:
982
983 ```
984 use std::fmt::Debug;
985
986 fn foo<T>(x: &[T]) where T: Debug {
987     // details elided
988     # ()
989 }
990
991 foo(&[1, 2]);
992 ```
993
994 will instantiate type parameter `T` with `i32`.
995
996 The type parameters can also be explicitly supplied in a trailing
997 [path](#paths) component after the function name. This might be necessary if
998 there is not sufficient context to determine the type parameters. For example,
999 `mem::size_of::<u32>() == 4`.
1000
1001 #### Diverging functions
1002
1003 A special kind of function can be declared with a `!` character where the
1004 output type would normally be. For example:
1005
1006 ```
1007 fn my_err(s: &str) -> ! {
1008     println!("{}", s);
1009     panic!();
1010 }
1011 ```
1012
1013 We call such functions "diverging" because they never return a value to the
1014 caller. Every control path in a diverging function must end with a `panic!()` or
1015 a call to another diverging function on every control path. The `!` annotation
1016 does *not* denote a type.
1017
1018 It might be necessary to declare a diverging function because as mentioned
1019 previously, the typechecker checks that every control path in a function ends
1020 with a [`return`](#return-expressions) or diverging expression. So, if `my_err`
1021 were declared without the `!` annotation, the following code would not
1022 typecheck:
1023
1024 ```
1025 # fn my_err(s: &str) -> ! { panic!() }
1026
1027 fn f(i: i32) -> i32 {
1028     if i == 42 {
1029         return 42;
1030     }
1031     else {
1032         my_err("Bad number!");
1033     }
1034 }
1035 ```
1036
1037 This will not compile without the `!` annotation on `my_err`, since the `else`
1038 branch of the conditional in `f` does not return an `i32`, as required by the
1039 signature of `f`. Adding the `!` annotation to `my_err` informs the
1040 typechecker that, should control ever enter `my_err`, no further type judgments
1041 about `f` need to hold, since control will never resume in any context that
1042 relies on those judgments. Thus the return type on `f` only needs to reflect
1043 the `if` branch of the conditional.
1044
1045 #### Extern functions
1046
1047 Extern functions are part of Rust's foreign function interface, providing the
1048 opposite functionality to [external blocks](#external-blocks). Whereas
1049 external blocks allow Rust code to call foreign code, extern functions with
1050 bodies defined in Rust code _can be called by foreign code_. They are defined
1051 in the same way as any other Rust function, except that they have the `extern`
1052 modifier.
1053
1054 ```
1055 // Declares an extern fn, the ABI defaults to "C"
1056 extern fn new_i32() -> i32 { 0 }
1057
1058 // Declares an extern fn with "stdcall" ABI
1059 extern "stdcall" fn new_i32_stdcall() -> i32 { 0 }
1060 ```
1061
1062 Unlike normal functions, extern fns have type `extern "ABI" fn()`. This is the
1063 same type as the functions declared in an extern block.
1064
1065 ```
1066 # extern fn new_i32() -> i32 { 0 }
1067 let fptr: extern "C" fn() -> i32 = new_i32;
1068 ```
1069
1070 Extern functions may be called directly from Rust code as Rust uses large,
1071 contiguous stack segments like C.
1072
1073 ### Type aliases
1074
1075 A _type alias_ defines a new name for an existing [type](#types). Type
1076 aliases are declared with the keyword `type`. Every value has a single,
1077 specific type, but may implement several different traits, or be compatible with
1078 several different type constraints.
1079
1080 For example, the following defines the type `Point` as a synonym for the type
1081 `(u8, u8)`, the type of pairs of unsigned 8 bit integers:
1082
1083 ```
1084 type Point = (u8, u8);
1085 let p: Point = (41, 68);
1086 ```
1087
1088 ### Structs
1089
1090 A _struct_ is a nominal [struct type](#struct-types) defined with the
1091 keyword `struct`.
1092
1093 An example of a `struct` item and its use:
1094
1095 ```
1096 struct Point {x: i32, y: i32}
1097 let p = Point {x: 10, y: 11};
1098 let px: i32 = p.x;
1099 ```
1100
1101 A _tuple struct_ is a nominal [tuple type](#tuple-types), also defined with
1102 the keyword `struct`. For example:
1103
1104 ```
1105 struct Point(i32, i32);
1106 let p = Point(10, 11);
1107 let px: i32 = match p { Point(x, _) => x };
1108 ```
1109
1110 A _unit-like struct_ is a struct without any fields, defined by leaving off
1111 the list of fields entirely. Such a struct implicitly defines a constant of
1112 its type with the same name. For example:
1113
1114 ```
1115 # #![feature(braced_empty_structs)]
1116 struct Cookie;
1117 let c = [Cookie, Cookie {}, Cookie, Cookie {}];
1118 ```
1119
1120 is equivalent to
1121
1122 ```
1123 # #![feature(braced_empty_structs)]
1124 struct Cookie {}
1125 const Cookie: Cookie = Cookie {};
1126 let c = [Cookie, Cookie {}, Cookie, Cookie {}];
1127 ```
1128
1129 The precise memory layout of a struct is not specified. One can specify a
1130 particular layout using the [`repr` attribute](#ffi-attributes).
1131
1132 ### Enumerations
1133
1134 An _enumeration_ is a simultaneous definition of a nominal [enumerated
1135 type](#enumerated-types) as well as a set of *constructors*, that can be used
1136 to create or pattern-match values of the corresponding enumerated type.
1137
1138 Enumerations are declared with the keyword `enum`.
1139
1140 An example of an `enum` item and its use:
1141
1142 ```
1143 enum Animal {
1144     Dog,
1145     Cat,
1146 }
1147
1148 let mut a: Animal = Animal::Dog;
1149 a = Animal::Cat;
1150 ```
1151
1152 Enumeration constructors can have either named or unnamed fields:
1153
1154 ```rust
1155 enum Animal {
1156     Dog (String, f64),
1157     Cat { name: String, weight: f64 }
1158 }
1159
1160 let mut a: Animal = Animal::Dog("Cocoa".to_string(), 37.2);
1161 a = Animal::Cat { name: "Spotty".to_string(), weight: 2.7 };
1162 ```
1163
1164 In this example, `Cat` is a _struct-like enum variant_,
1165 whereas `Dog` is simply called an enum variant.
1166
1167 Enums have a discriminant. You can assign them explicitly:
1168
1169 ```
1170 enum Foo {
1171     Bar = 123,
1172 }
1173 ```
1174
1175 If a discriminant isn't assigned, they start at zero, and add one for each
1176 variant, in order.
1177
1178 You can cast an enum to get this value:
1179
1180 ```
1181 # enum Foo { Bar = 123 }
1182 let x = Foo::Bar as u32; // x is now 123u32
1183 ```
1184
1185 This only works as long as none of the variants have data attached. If
1186 it were `Bar(i32)`, this is disallowed.
1187
1188 ### Constant items
1189
1190 A *constant item* is a named _constant value_ which is not associated with a
1191 specific memory location in the program. Constants are essentially inlined
1192 wherever they are used, meaning that they are copied directly into the relevant
1193 context when used. References to the same constant are not necessarily
1194 guaranteed to refer to the same memory address.
1195
1196 Constant values must not have destructors, and otherwise permit most forms of
1197 data. Constants may refer to the address of other constants, in which case the
1198 address will have the `static` lifetime. The compiler is, however, still at
1199 liberty to translate the constant many times, so the address referred to may not
1200 be stable.
1201
1202 Constants must be explicitly typed. The type may be `bool`, `char`, a number, or
1203 a type derived from those primitive types. The derived types are references with
1204 the `static` lifetime, fixed-size arrays, tuples, enum variants, and structs.
1205
1206 ```
1207 const BIT1: u32 = 1 << 0;
1208 const BIT2: u32 = 1 << 1;
1209
1210 const BITS: [u32; 2] = [BIT1, BIT2];
1211 const STRING: &'static str = "bitstring";
1212
1213 struct BitsNStrings<'a> {
1214     mybits: [u32; 2],
1215     mystring: &'a str
1216 }
1217
1218 const BITS_N_STRINGS: BitsNStrings<'static> = BitsNStrings {
1219     mybits: BITS,
1220     mystring: STRING
1221 };
1222 ```
1223
1224 ### Static items
1225
1226 A *static item* is similar to a *constant*, except that it represents a precise
1227 memory location in the program. A static is never "inlined" at the usage site,
1228 and all references to it refer to the same memory location. Static items have
1229 the `static` lifetime, which outlives all other lifetimes in a Rust program.
1230 Static items may be placed in read-only memory if they do not contain any
1231 interior mutability.
1232
1233 Statics may contain interior mutability through the `UnsafeCell` language item.
1234 All access to a static is safe, but there are a number of restrictions on
1235 statics:
1236
1237 * Statics may not contain any destructors.
1238 * The types of static values must ascribe to `Sync` to allow thread-safe access.
1239 * Statics may not refer to other statics by value, only by reference.
1240 * Constants cannot refer to statics.
1241
1242 Constants should in general be preferred over statics, unless large amounts of
1243 data are being stored, or single-address and mutability properties are required.
1244
1245 #### Mutable statics
1246
1247 If a static item is declared with the `mut` keyword, then it is allowed to
1248 be modified by the program. One of Rust's goals is to make concurrency bugs
1249 hard to run into, and this is obviously a very large source of race conditions
1250 or other bugs. For this reason, an `unsafe` block is required when either
1251 reading or writing a mutable static variable. Care should be taken to ensure
1252 that modifications to a mutable static are safe with respect to other threads
1253 running in the same process.
1254
1255 Mutable statics are still very useful, however. They can be used with C
1256 libraries and can also be bound from C libraries (in an `extern` block).
1257
1258 ```
1259 # fn atomic_add(_: &mut u32, _: u32) -> u32 { 2 }
1260
1261 static mut LEVELS: u32 = 0;
1262
1263 // This violates the idea of no shared state, and this doesn't internally
1264 // protect against races, so this function is `unsafe`
1265 unsafe fn bump_levels_unsafe1() -> u32 {
1266     let ret = LEVELS;
1267     LEVELS += 1;
1268     return ret;
1269 }
1270
1271 // Assuming that we have an atomic_add function which returns the old value,
1272 // this function is "safe" but the meaning of the return value may not be what
1273 // callers expect, so it's still marked as `unsafe`
1274 unsafe fn bump_levels_unsafe2() -> u32 {
1275     return atomic_add(&mut LEVELS, 1);
1276 }
1277 ```
1278
1279 Mutable statics have the same restrictions as normal statics, except that the
1280 type of the value is not required to ascribe to `Sync`.
1281
1282 ### Traits
1283
1284 A _trait_ describes an abstract interface that types can
1285 implement. This interface consists of associated items, which come in
1286 three varieties:
1287
1288 - functions
1289 - constants
1290 - types
1291
1292 Associated functions whose first parameter is named `self` are called
1293 methods and may be invoked using `.` notation (e.g., `x.foo()`).
1294
1295 All traits define an implicit type parameter `Self` that refers to
1296 "the type that is implementing this interface". Traits may also
1297 contain additional type parameters. These type parameters (including
1298 `Self`) may be constrained by other traits and so forth as usual.
1299
1300 Trait bounds on `Self` are considered "supertraits". These are
1301 required to be acyclic.  Supertraits are somewhat different from other
1302 constraints in that they affect what methods are available in the
1303 vtable when the trait is used as a [trait object](#trait-objects).
1304
1305 Traits are implemented for specific types through separate
1306 [implementations](#implementations).
1307
1308 Consider the following trait:
1309
1310 ```
1311 # type Surface = i32;
1312 # type BoundingBox = i32;
1313 trait Shape {
1314     fn draw(&self, Surface);
1315     fn bounding_box(&self) -> BoundingBox;
1316 }
1317 ```
1318
1319 This defines a trait with two methods. All values that have
1320 [implementations](#implementations) of this trait in scope can have their
1321 `draw` and `bounding_box` methods called, using `value.bounding_box()`
1322 [syntax](#method-call-expressions).
1323
1324 Traits can include default implementations of methods, as in:
1325
1326 ```
1327 trait Foo {
1328     fn bar(&self);
1329     fn baz(&self) { println!("We called baz."); }
1330 }
1331 ```
1332
1333 Here the `baz` method has a default implementation, so types that implement
1334 `Foo` need only implement `bar`. It is also possible for implementing types
1335 to override a method that has a default implementation.
1336
1337 Type parameters can be specified for a trait to make it generic. These appear
1338 after the trait name, using the same syntax used in [generic
1339 functions](#generic-functions).
1340
1341 ```
1342 trait Seq<T> {
1343     fn len(&self) -> u32;
1344     fn elt_at(&self, n: u32) -> T;
1345     fn iter<F>(&self, F) where F: Fn(T);
1346 }
1347 ```
1348
1349 It is also possible to define associated types for a trait. Consider the
1350 following example of a `Container` trait. Notice how the type is available
1351 for use in the method signatures:
1352
1353 ```
1354 trait Container {
1355     type E;
1356     fn empty() -> Self;
1357     fn insert(&mut self, Self::E);
1358 }
1359 ```
1360
1361 In order for a type to implement this trait, it must not only provide
1362 implementations for every method, but it must specify the type `E`. Here's
1363 an implementation of `Container` for the standard library type `Vec`:
1364
1365 ```
1366 # trait Container {
1367 #     type E;
1368 #     fn empty() -> Self;
1369 #     fn insert(&mut self, Self::E);
1370 # }
1371 impl<T> Container for Vec<T> {
1372     type E = T;
1373     fn empty() -> Vec<T> { Vec::new() }
1374     fn insert(&mut self, x: T) { self.push(x); }
1375 }
1376 ```
1377
1378 Generic functions may use traits as _bounds_ on their type parameters. This
1379 will have two effects:
1380
1381 - Only types that have the trait may instantiate the parameter.
1382 - Within the generic function, the methods of the trait can be
1383   called on values that have the parameter's type.
1384
1385 For example:
1386
1387 ```
1388 # type Surface = i32;
1389 # trait Shape { fn draw(&self, Surface); }
1390 fn draw_twice<T: Shape>(surface: Surface, sh: T) {
1391     sh.draw(surface);
1392     sh.draw(surface);
1393 }
1394 ```
1395
1396 Traits also define a [trait object](#trait-objects) with the same
1397 name as the trait. Values of this type are created by coercing from a
1398 pointer of some specific type to a pointer of trait type. For example,
1399 `&T` could be coerced to `&Shape` if `T: Shape` holds (and similarly
1400 for `Box<T>`). This coercion can either be implicit or
1401 [explicit](#type-cast-expressions). Here is an example of an explicit
1402 coercion:
1403
1404 ```
1405 trait Shape { }
1406 impl Shape for i32 { }
1407 let mycircle = 0i32;
1408 let myshape: Box<Shape> = Box::new(mycircle) as Box<Shape>;
1409 ```
1410
1411 The resulting value is a box containing the value that was cast, along with
1412 information that identifies the methods of the implementation that was used.
1413 Values with a trait type can have [methods called](#method-call-expressions) on
1414 them, for any method in the trait, and can be used to instantiate type
1415 parameters that are bounded by the trait.
1416
1417 Trait methods may be static, which means that they lack a `self` argument.
1418 This means that they can only be called with function call syntax (`f(x)`) and
1419 not method call syntax (`obj.f()`). The way to refer to the name of a static
1420 method is to qualify it with the trait name, treating the trait name like a
1421 module. For example:
1422
1423 ```
1424 trait Num {
1425     fn from_i32(n: i32) -> Self;
1426 }
1427 impl Num for f64 {
1428     fn from_i32(n: i32) -> f64 { n as f64 }
1429 }
1430 let x: f64 = Num::from_i32(42);
1431 ```
1432
1433 Traits may inherit from other traits. Consider the following example:
1434
1435 ```
1436 trait Shape { fn area(&self) -> f64; }
1437 trait Circle : Shape { fn radius(&self) -> f64; }
1438 ```
1439
1440 The syntax `Circle : Shape` means that types that implement `Circle` must also
1441 have an implementation for `Shape`. Multiple supertraits are separated by `+`,
1442 `trait Circle : Shape + PartialEq { }`. In an implementation of `Circle` for a
1443 given type `T`, methods can refer to `Shape` methods, since the typechecker
1444 checks that any type with an implementation of `Circle` also has an
1445 implementation of `Shape`:
1446
1447 ```rust
1448 struct Foo;
1449
1450 trait Shape { fn area(&self) -> f64; }
1451 trait Circle : Shape { fn radius(&self) -> f64; }
1452 impl Shape for Foo {
1453     fn area(&self) -> f64 {
1454         0.0
1455     }
1456 }
1457 impl Circle for Foo {
1458     fn radius(&self) -> f64 {
1459         println!("calling area: {}", self.area());
1460
1461         0.0
1462     }
1463 }
1464
1465 let c = Foo;
1466 c.radius();
1467 ```
1468
1469 In type-parameterized functions, methods of the supertrait may be called on
1470 values of subtrait-bound type parameters. Referring to the previous example of
1471 `trait Circle : Shape`:
1472
1473 ```
1474 # trait Shape { fn area(&self) -> f64; }
1475 # trait Circle : Shape { fn radius(&self) -> f64; }
1476 fn radius_times_area<T: Circle>(c: T) -> f64 {
1477     // `c` is both a Circle and a Shape
1478     c.radius() * c.area()
1479 }
1480 ```
1481
1482 Likewise, supertrait methods may also be called on trait objects.
1483
1484 ```{.ignore}
1485 # trait Shape { fn area(&self) -> f64; }
1486 # trait Circle : Shape { fn radius(&self) -> f64; }
1487 # impl Shape for i32 { fn area(&self) -> f64 { 0.0 } }
1488 # impl Circle for i32 { fn radius(&self) -> f64 { 0.0 } }
1489 # let mycircle = 0i32;
1490 let mycircle = Box::new(mycircle) as Box<Circle>;
1491 let nonsense = mycircle.radius() * mycircle.area();
1492 ```
1493
1494 ### Implementations
1495
1496 An _implementation_ is an item that implements a [trait](#traits) for a
1497 specific type.
1498
1499 Implementations are defined with the keyword `impl`.
1500
1501 ```
1502 # #[derive(Copy, Clone)]
1503 # struct Point {x: f64, y: f64};
1504 # type Surface = i32;
1505 # struct BoundingBox {x: f64, y: f64, width: f64, height: f64};
1506 # trait Shape { fn draw(&self, Surface); fn bounding_box(&self) -> BoundingBox; }
1507 # fn do_draw_circle(s: Surface, c: Circle) { }
1508 struct Circle {
1509     radius: f64,
1510     center: Point,
1511 }
1512
1513 impl Copy for Circle {}
1514
1515 impl Clone for Circle {
1516     fn clone(&self) -> Circle { *self }
1517 }
1518
1519 impl Shape for Circle {
1520     fn draw(&self, s: Surface) { do_draw_circle(s, *self); }
1521     fn bounding_box(&self) -> BoundingBox {
1522         let r = self.radius;
1523         BoundingBox {
1524             x: self.center.x - r,
1525             y: self.center.y - r,
1526             width: 2.0 * r,
1527             height: 2.0 * r,
1528         }
1529     }
1530 }
1531 ```
1532
1533 It is possible to define an implementation without referring to a trait. The
1534 methods in such an implementation can only be used as direct calls on the values
1535 of the type that the implementation targets. In such an implementation, the
1536 trait type and `for` after `impl` are omitted. Such implementations are limited
1537 to nominal types (enums, structs, trait objects), and the implementation must
1538 appear in the same crate as the `self` type:
1539
1540 ```
1541 struct Point {x: i32, y: i32}
1542
1543 impl Point {
1544     fn log(&self) {
1545         println!("Point is at ({}, {})", self.x, self.y);
1546     }
1547 }
1548
1549 let my_point = Point {x: 10, y:11};
1550 my_point.log();
1551 ```
1552
1553 When a trait _is_ specified in an `impl`, all methods declared as part of the
1554 trait must be implemented, with matching types and type parameter counts.
1555
1556 An implementation can take type parameters, which can be different from the
1557 type parameters taken by the trait it implements. Implementation parameters
1558 are written after the `impl` keyword.
1559
1560 ```
1561 # trait Seq<T> { fn dummy(&self, _: T) { } }
1562 impl<T> Seq<T> for Vec<T> {
1563     /* ... */
1564 }
1565 impl Seq<bool> for u32 {
1566     /* Treat the integer as a sequence of bits */
1567 }
1568 ```
1569
1570 ### External blocks
1571
1572 External blocks form the basis for Rust's foreign function interface.
1573 Declarations in an external block describe symbols in external, non-Rust
1574 libraries.
1575
1576 Functions within external blocks are declared in the same way as other Rust
1577 functions, with the exception that they may not have a body and are instead
1578 terminated by a semicolon.
1579
1580 Functions within external blocks may be called by Rust code, just like
1581 functions defined in Rust. The Rust compiler automatically translates between
1582 the Rust ABI and the foreign ABI.
1583
1584 A number of [attributes](#attributes) control the behavior of external blocks.
1585
1586 By default external blocks assume that the library they are calling uses the
1587 standard C "cdecl" ABI. Other ABIs may be specified using an `abi` string, as
1588 shown here:
1589
1590 ```ignore
1591 // Interface to the Windows API
1592 extern "stdcall" { }
1593 ```
1594
1595 The `link` attribute allows the name of the library to be specified. When
1596 specified the compiler will attempt to link against the native library of the
1597 specified name.
1598
1599 ```{.ignore}
1600 #[link(name = "crypto")]
1601 extern { }
1602 ```
1603
1604 The type of a function declared in an extern block is `extern "abi" fn(A1, ...,
1605 An) -> R`, where `A1...An` are the declared types of its arguments and `R` is
1606 the declared return type.
1607
1608 It is valid to add the `link` attribute on an empty extern block. You can use
1609 this to satisfy the linking requirements of extern blocks elsewhere in your code
1610 (including upstream crates) instead of adding the attribute to each extern block.
1611
1612 ## Visibility and Privacy
1613
1614 These two terms are often used interchangeably, and what they are attempting to
1615 convey is the answer to the question "Can this item be used at this location?"
1616
1617 Rust's name resolution operates on a global hierarchy of namespaces. Each level
1618 in the hierarchy can be thought of as some item. The items are one of those
1619 mentioned above, but also include external crates. Declaring or defining a new
1620 module can be thought of as inserting a new tree into the hierarchy at the
1621 location of the definition.
1622
1623 To control whether interfaces can be used across modules, Rust checks each use
1624 of an item to see whether it should be allowed or not. This is where privacy
1625 warnings are generated, or otherwise "you used a private item of another module
1626 and weren't allowed to."
1627
1628 By default, everything in Rust is *private*, with one exception. Enum variants
1629 in a `pub` enum are also public by default. When an item is declared as `pub`,
1630 it can be thought of as being accessible to the outside world. For example:
1631
1632 ```
1633 # fn main() {}
1634 // Declare a private struct
1635 struct Foo;
1636
1637 // Declare a public struct with a private field
1638 pub struct Bar {
1639     field: i32
1640 }
1641
1642 // Declare a public enum with two public variants
1643 pub enum State {
1644     PubliclyAccessibleState,
1645     PubliclyAccessibleState2,
1646 }
1647 ```
1648
1649 With the notion of an item being either public or private, Rust allows item
1650 accesses in two cases:
1651
1652 1. If an item is public, then it can be used externally through any of its
1653    public ancestors.
1654 2. If an item is private, it may be accessed by the current module and its
1655    descendants.
1656
1657 These two cases are surprisingly powerful for creating module hierarchies
1658 exposing public APIs while hiding internal implementation details. To help
1659 explain, here's a few use cases and what they would entail:
1660
1661 * A library developer needs to expose functionality to crates which link
1662   against their library. As a consequence of the first case, this means that
1663   anything which is usable externally must be `pub` from the root down to the
1664   destination item. Any private item in the chain will disallow external
1665   accesses.
1666
1667 * A crate needs a global available "helper module" to itself, but it doesn't
1668   want to expose the helper module as a public API. To accomplish this, the
1669   root of the crate's hierarchy would have a private module which then
1670   internally has a "public API". Because the entire crate is a descendant of
1671   the root, then the entire local crate can access this private module through
1672   the second case.
1673
1674 * When writing unit tests for a module, it's often a common idiom to have an
1675   immediate child of the module to-be-tested named `mod test`. This module
1676   could access any items of the parent module through the second case, meaning
1677   that internal implementation details could also be seamlessly tested from the
1678   child module.
1679
1680 In the second case, it mentions that a private item "can be accessed" by the
1681 current module and its descendants, but the exact meaning of accessing an item
1682 depends on what the item is. Accessing a module, for example, would mean
1683 looking inside of it (to import more items). On the other hand, accessing a
1684 function would mean that it is invoked. Additionally, path expressions and
1685 import statements are considered to access an item in the sense that the
1686 import/expression is only valid if the destination is in the current visibility
1687 scope.
1688
1689 Here's an example of a program which exemplifies the three cases outlined
1690 above:
1691
1692 ```
1693 // This module is private, meaning that no external crate can access this
1694 // module. Because it is private at the root of this current crate, however, any
1695 // module in the crate may access any publicly visible item in this module.
1696 mod crate_helper_module {
1697
1698     // This function can be used by anything in the current crate
1699     pub fn crate_helper() {}
1700
1701     // This function *cannot* be used by anything else in the crate. It is not
1702     // publicly visible outside of the `crate_helper_module`, so only this
1703     // current module and its descendants may access it.
1704     fn implementation_detail() {}
1705 }
1706
1707 // This function is "public to the root" meaning that it's available to external
1708 // crates linking against this one.
1709 pub fn public_api() {}
1710
1711 // Similarly to 'public_api', this module is public so external crates may look
1712 // inside of it.
1713 pub mod submodule {
1714     use crate_helper_module;
1715
1716     pub fn my_method() {
1717         // Any item in the local crate may invoke the helper module's public
1718         // interface through a combination of the two rules above.
1719         crate_helper_module::crate_helper();
1720     }
1721
1722     // This function is hidden to any module which is not a descendant of
1723     // `submodule`
1724     fn my_implementation() {}
1725
1726     #[cfg(test)]
1727     mod test {
1728
1729         #[test]
1730         fn test_my_implementation() {
1731             // Because this module is a descendant of `submodule`, it's allowed
1732             // to access private items inside of `submodule` without a privacy
1733             // violation.
1734             super::my_implementation();
1735         }
1736     }
1737 }
1738
1739 # fn main() {}
1740 ```
1741
1742 For a rust program to pass the privacy checking pass, all paths must be valid
1743 accesses given the two rules above. This includes all use statements,
1744 expressions, types, etc.
1745
1746 ### Re-exporting and Visibility
1747
1748 Rust allows publicly re-exporting items through a `pub use` directive. Because
1749 this is a public directive, this allows the item to be used in the current
1750 module through the rules above. It essentially allows public access into the
1751 re-exported item. For example, this program is valid:
1752
1753 ```
1754 pub use self::implementation::api;
1755
1756 mod implementation {
1757     pub mod api {
1758         pub fn f() {}
1759     }
1760 }
1761
1762 # fn main() {}
1763 ```
1764
1765 This means that any external crate referencing `implementation::api::f` would
1766 receive a privacy violation, while the path `api::f` would be allowed.
1767
1768 When re-exporting a private item, it can be thought of as allowing the "privacy
1769 chain" being short-circuited through the reexport instead of passing through
1770 the namespace hierarchy as it normally would.
1771
1772 ## Attributes
1773
1774 Any item declaration may have an _attribute_ applied to it. Attributes in Rust
1775 are modeled on Attributes in ECMA-335, with the syntax coming from ECMA-334
1776 (C#). An attribute is a general, free-form metadatum that is interpreted
1777 according to name, convention, and language and compiler version. Attributes
1778 may appear as any of:
1779
1780 * A single identifier, the attribute name
1781 * An identifier followed by the equals sign '=' and a literal, providing a
1782   key/value pair
1783 * An identifier followed by a parenthesized list of sub-attribute arguments
1784
1785 Attributes with a bang ("!") after the hash ("#") apply to the item that the
1786 attribute is declared within. Attributes that do not have a bang after the hash
1787 apply to the item that follows the attribute.
1788
1789 An example of attributes:
1790
1791 ```{.rust}
1792 // General metadata applied to the enclosing module or crate.
1793 #![crate_type = "lib"]
1794
1795 // A function marked as a unit test
1796 #[test]
1797 fn test_foo() {
1798     /* ... */
1799 }
1800
1801 // A conditionally-compiled module
1802 #[cfg(target_os="linux")]
1803 mod bar {
1804     /* ... */
1805 }
1806
1807 // A lint attribute used to suppress a warning/error
1808 #[allow(non_camel_case_types)]
1809 type int8_t = i8;
1810 ```
1811
1812 > **Note:** At some point in the future, the compiler will distinguish between
1813 > language-reserved and user-available attributes. Until then, there is
1814 > effectively no difference between an attribute handled by a loadable syntax
1815 > extension and the compiler.
1816
1817 ### Crate-only attributes
1818
1819 - `crate_name` - specify the crate's crate name.
1820 - `crate_type` - see [linkage](#linkage).
1821 - `feature` - see [compiler features](#compiler-features).
1822 - `no_builtins` - disable optimizing certain code patterns to invocations of
1823                   library functions that are assumed to exist
1824 - `no_main` - disable emitting the `main` symbol. Useful when some other
1825    object being linked to defines `main`.
1826 - `no_start` - disable linking to the `native` crate, which specifies the
1827   "start" language item.
1828 - `no_std` - disable linking to the `std` crate.
1829 - `plugin` - load a list of named crates as compiler plugins, e.g.
1830              `#![plugin(foo, bar)]`. Optional arguments for each plugin,
1831              i.e. `#![plugin(foo(... args ...))]`, are provided to the plugin's
1832              registrar function.  The `plugin` feature gate is required to use
1833              this attribute.
1834 - `recursion_limit` - Sets the maximum depth for potentially
1835                       infinitely-recursive compile-time operations like
1836                       auto-dereference or macro expansion. The default is
1837                       `#![recursion_limit="64"]`.
1838
1839 ### Module-only attributes
1840
1841 - `no_implicit_prelude` - disable injecting `use std::prelude::*` in this
1842   module.
1843 - `path` - specifies the file to load the module from. `#[path="foo.rs"] mod
1844   bar;` is equivalent to `mod bar { /* contents of foo.rs */ }`. The path is
1845   taken relative to the directory that the current module is in.
1846
1847 ### Function-only attributes
1848
1849 - `main` - indicates that this function should be passed to the entry point,
1850   rather than the function in the crate root named `main`.
1851 - `plugin_registrar` - mark this function as the registration point for
1852   [compiler plugins][plugin], such as loadable syntax extensions.
1853 - `start` - indicates that this function should be used as the entry point,
1854   overriding the "start" language item. See the "start" [language
1855   item](#language-items) for more details.
1856 - `test` - indicates that this function is a test function, to only be compiled
1857   in case of `--test`.
1858 - `should_panic` - indicates that this test function should panic, inverting the success condition.
1859 - `cold` - The function is unlikely to be executed, so optimize it (and calls
1860   to it) differently.
1861
1862 ### Static-only attributes
1863
1864 - `thread_local` - on a `static mut`, this signals that the value of this
1865   static may change depending on the current thread. The exact consequences of
1866   this are implementation-defined.
1867
1868 ### FFI attributes
1869
1870 On an `extern` block, the following attributes are interpreted:
1871
1872 - `link_args` - specify arguments to the linker, rather than just the library
1873   name and type. This is feature gated and the exact behavior is
1874   implementation-defined (due to variety of linker invocation syntax).
1875 - `link` - indicate that a native library should be linked to for the
1876   declarations in this block to be linked correctly. `link` supports an optional
1877   `kind` key with three possible values: `dylib`, `static`, and `framework`. See
1878   [external blocks](#external-blocks) for more about external blocks. Two
1879   examples: `#[link(name = "readline")]` and
1880   `#[link(name = "CoreFoundation", kind = "framework")]`.
1881 - `linked_from` - indicates what native library this block of FFI items is
1882   coming from. This attribute is of the form `#[linked_from = "foo"]` where
1883   `foo` is the name of a library in either `#[link]` or a `-l` flag. This
1884   attribute is currently required to export symbols from a Rust dynamic library
1885   on Windows, and it is feature gated behind the `linked_from` feature.
1886
1887 On declarations inside an `extern` block, the following attributes are
1888 interpreted:
1889
1890 - `link_name` - the name of the symbol that this function or static should be
1891   imported as.
1892 - `linkage` - on a static, this specifies the [linkage
1893   type](http://llvm.org/docs/LangRef.html#linkage-types).
1894
1895 On `enum`s:
1896
1897 - `repr` - on C-like enums, this sets the underlying type used for
1898   representation. Takes one argument, which is the primitive
1899   type this enum should be represented for, or `C`, which specifies that it
1900   should be the default `enum` size of the C ABI for that platform. Note that
1901   enum representation in C is undefined, and this may be incorrect when the C
1902   code is compiled with certain flags.
1903
1904 On `struct`s:
1905
1906 - `repr` - specifies the representation to use for this struct. Takes a list
1907   of options. The currently accepted ones are `C` and `packed`, which may be
1908   combined. `C` will use a C ABI compatible struct layout, and `packed` will
1909   remove any padding between fields (note that this is very fragile and may
1910   break platforms which require aligned access).
1911
1912 ### Macro-related attributes
1913
1914 - `macro_use` on a `mod` — macros defined in this module will be visible in the
1915   module's parent, after this module has been included.
1916
1917 - `macro_use` on an `extern crate` — load macros from this crate.  An optional
1918   list of names `#[macro_use(foo, bar)]` restricts the import to just those
1919   macros named.  The `extern crate` must appear at the crate root, not inside
1920   `mod`, which ensures proper function of the [`$crate` macro
1921   variable](book/macros.html#the-variable-crate).
1922
1923 - `macro_reexport` on an `extern crate` — re-export the named macros.
1924
1925 - `macro_export` - export a macro for cross-crate usage.
1926
1927 - `no_link` on an `extern crate` — even if we load this crate for macros, don't
1928   link it into the output.
1929
1930 See the [macros section of the
1931 book](book/macros.html#scoping-and-macro-importexport) for more information on
1932 macro scope.
1933
1934
1935 ### Miscellaneous attributes
1936
1937 - `export_name` - on statics and functions, this determines the name of the
1938   exported symbol.
1939 - `link_section` - on statics and functions, this specifies the section of the
1940   object file that this item's contents will be placed into.
1941 - `no_mangle` - on any item, do not apply the standard name mangling. Set the
1942   symbol for this item to its identifier.
1943 - `simd` - on certain tuple structs, derive the arithmetic operators, which
1944   lower to the target's SIMD instructions, if any; the `simd` feature gate
1945   is necessary to use this attribute.
1946 - `unsafe_destructor_blind_to_params` - on `Drop::drop` method, asserts that the
1947   destructor code (and all potential specializations of that code) will
1948   never attempt to read from nor write to any references with lifetimes
1949   that come in via generic parameters. This is a constraint we cannot
1950   currently express via the type system, and therefore we rely on the
1951   programmer to assert that it holds. Adding this to a Drop impl causes
1952   the associated destructor to be considered "uninteresting" by the
1953   Drop-Check rule, and thus it can help sidestep data ordering
1954   constraints that would otherwise be introduced by the Drop-Check
1955   rule. Such sidestepping of the constraints, if done incorrectly, can
1956   lead to undefined behavior (in the form of reading or writing to data
1957   outside of its dynamic extent), and thus this attribute has the word
1958   "unsafe" in its name. To use this, the
1959   `unsafe_destructor_blind_to_params` feature gate must be enabled.
1960 - `unsafe_no_drop_flag` - on structs, remove the flag that prevents
1961   destructors from being run twice. Destructors might be run multiple times on
1962   the same object with this attribute. To use this, the `unsafe_no_drop_flag` feature
1963   gate must be enabled.
1964 - `doc` - Doc comments such as `/// foo` are equivalent to `#[doc = "foo"]`.
1965 - `rustc_on_unimplemented` - Write a custom note to be shown along with the error
1966    when the trait is found to be unimplemented on a type.
1967    You may use format arguments like `{T}`, `{A}` to correspond to the
1968    types at the point of use corresponding to the type parameters of the
1969    trait of the same name. `{Self}` will be replaced with the type that is supposed
1970    to implement the trait but doesn't. To use this, the `on_unimplemented` feature gate
1971    must be enabled.
1972
1973 ### Conditional compilation
1974
1975 Sometimes one wants to have different compiler outputs from the same code,
1976 depending on build target, such as targeted operating system, or to enable
1977 release builds.
1978
1979 There are two kinds of configuration options, one that is either defined or not
1980 (`#[cfg(foo)]`), and the other that contains a string that can be checked
1981 against (`#[cfg(bar = "baz")]`). Currently, only compiler-defined configuration
1982 options can have the latter form.
1983
1984 ```
1985 // The function is only included in the build when compiling for OSX
1986 #[cfg(target_os = "macos")]
1987 fn macos_only() {
1988   // ...
1989 }
1990
1991 // This function is only included when either foo or bar is defined
1992 #[cfg(any(foo, bar))]
1993 fn needs_foo_or_bar() {
1994   // ...
1995 }
1996
1997 // This function is only included when compiling for a unixish OS with a 32-bit
1998 // architecture
1999 #[cfg(all(unix, target_pointer_width = "32"))]
2000 fn on_32bit_unix() {
2001   // ...
2002 }
2003
2004 // This function is only included when foo is not defined
2005 #[cfg(not(foo))]
2006 fn needs_not_foo() {
2007   // ...
2008 }
2009 ```
2010
2011 This illustrates some conditional compilation can be achieved using the
2012 `#[cfg(...)]` attribute. `any`, `all` and `not` can be used to assemble
2013 arbitrarily complex configurations through nesting.
2014
2015 The following configurations must be defined by the implementation:
2016
2017 * `debug_assertions` - Enabled by default when compiling without optimizations.
2018   This can be used to enable extra debugging code in development but not in
2019   production.  For example, it controls the behavior of the standard library's
2020   `debug_assert!` macro.
2021 * `target_arch = "..."` - Target CPU architecture, such as `"x86"`, `"x86_64"`
2022   `"mips"`, `"powerpc"`, `"arm"`, or `"aarch64"`.
2023 * `target_endian = "..."` - Endianness of the target CPU, either `"little"` or
2024   `"big"`.
2025 * `target_env = ".."` - An option provided by the compiler by default
2026   describing the runtime environment of the target platform. Some examples of
2027   this are `musl` for builds targeting the MUSL libc implementation, `msvc` for
2028   Windows builds targeting MSVC, and `gnu` frequently the rest of the time. This
2029   option may also be blank on some platforms.
2030 * `target_family = "..."` - Operating system family of the target, e. g.
2031   `"unix"` or `"windows"`. The value of this configuration option is defined
2032   as a configuration itself, like `unix` or `windows`.
2033 * `target_os = "..."` - Operating system of the target, examples include
2034   `"windows"`, `"macos"`, `"ios"`, `"linux"`, `"android"`, `"freebsd"`, `"dragonfly"`,
2035   `"bitrig"` , `"openbsd"` or `"netbsd"`.
2036 * `target_pointer_width = "..."` - Target pointer width in bits. This is set
2037   to `"32"` for targets with 32-bit pointers, and likewise set to `"64"` for
2038   64-bit pointers.
2039 * `target_vendor = "..."` - Vendor of the target, for example `apple`, `pc`, or
2040   simply `"unknown"`.
2041 * `test` - Enabled when compiling the test harness (using the `--test` flag).
2042 * `unix` - See `target_family`.
2043 * `windows` - See `target_family`.
2044
2045 You can also set another attribute based on a `cfg` variable with `cfg_attr`:
2046
2047 ```rust,ignore
2048 #[cfg_attr(a, b)]
2049 ```
2050
2051 Will be the same as `#[b]` if `a` is set by `cfg`, and nothing otherwise.
2052
2053 ### Lint check attributes
2054
2055 A lint check names a potentially undesirable coding pattern, such as
2056 unreachable code or omitted documentation, for the static entity to which the
2057 attribute applies.
2058
2059 For any lint check `C`:
2060
2061 * `allow(C)` overrides the check for `C` so that violations will go
2062    unreported,
2063 * `deny(C)` signals an error after encountering a violation of `C`,
2064 * `forbid(C)` is the same as `deny(C)`, but also forbids changing the lint
2065    level afterwards,
2066 * `warn(C)` warns about violations of `C` but continues compilation.
2067
2068 The lint checks supported by the compiler can be found via `rustc -W help`,
2069 along with their default settings.  [Compiler
2070 plugins](book/compiler-plugins.html#lint-plugins) can provide additional lint checks.
2071
2072 ```{.ignore}
2073 mod m1 {
2074     // Missing documentation is ignored here
2075     #[allow(missing_docs)]
2076     pub fn undocumented_one() -> i32 { 1 }
2077
2078     // Missing documentation signals a warning here
2079     #[warn(missing_docs)]
2080     pub fn undocumented_too() -> i32 { 2 }
2081
2082     // Missing documentation signals an error here
2083     #[deny(missing_docs)]
2084     pub fn undocumented_end() -> i32 { 3 }
2085 }
2086 ```
2087
2088 This example shows how one can use `allow` and `warn` to toggle a particular
2089 check on and off:
2090
2091 ```{.ignore}
2092 #[warn(missing_docs)]
2093 mod m2{
2094     #[allow(missing_docs)]
2095     mod nested {
2096         // Missing documentation is ignored here
2097         pub fn undocumented_one() -> i32 { 1 }
2098
2099         // Missing documentation signals a warning here,
2100         // despite the allow above.
2101         #[warn(missing_docs)]
2102         pub fn undocumented_two() -> i32 { 2 }
2103     }
2104
2105     // Missing documentation signals a warning here
2106     pub fn undocumented_too() -> i32 { 3 }
2107 }
2108 ```
2109
2110 This example shows how one can use `forbid` to disallow uses of `allow` for
2111 that lint check:
2112
2113 ```{.ignore}
2114 #[forbid(missing_docs)]
2115 mod m3 {
2116     // Attempting to toggle warning signals an error here
2117     #[allow(missing_docs)]
2118     /// Returns 2.
2119     pub fn undocumented_too() -> i32 { 2 }
2120 }
2121 ```
2122
2123 ### Language items
2124
2125 Some primitive Rust operations are defined in Rust code, rather than being
2126 implemented directly in C or assembly language. The definitions of these
2127 operations have to be easy for the compiler to find. The `lang` attribute
2128 makes it possible to declare these operations. For example, the `str` module
2129 in the Rust standard library defines the string equality function:
2130
2131 ```{.ignore}
2132 #[lang = "str_eq"]
2133 pub fn eq_slice(a: &str, b: &str) -> bool {
2134     // details elided
2135 }
2136 ```
2137
2138 The name `str_eq` has a special meaning to the Rust compiler, and the presence
2139 of this definition means that it will use this definition when generating calls
2140 to the string equality function.
2141
2142 The set of language items is currently considered unstable. A complete
2143 list of the built-in language items will be added in the future.
2144
2145 ### Inline attributes
2146
2147 The inline attribute suggests that the compiler should place a copy of
2148 the function or static in the caller, rather than generating code to
2149 call the function or access the static where it is defined.
2150
2151 The compiler automatically inlines functions based on internal heuristics.
2152 Incorrectly inlining functions can actually make the program slower, so it
2153 should be used with care.
2154
2155 `#[inline]` and `#[inline(always)]` always cause the function to be serialized
2156 into the crate metadata to allow cross-crate inlining.
2157
2158 There are three different types of inline attributes:
2159
2160 * `#[inline]` hints the compiler to perform an inline expansion.
2161 * `#[inline(always)]` asks the compiler to always perform an inline expansion.
2162 * `#[inline(never)]` asks the compiler to never perform an inline expansion.
2163
2164 ### `derive`
2165
2166 The `derive` attribute allows certain traits to be automatically implemented
2167 for data structures. For example, the following will create an `impl` for the
2168 `PartialEq` and `Clone` traits for `Foo`, the type parameter `T` will be given
2169 the `PartialEq` or `Clone` constraints for the appropriate `impl`:
2170
2171 ```
2172 #[derive(PartialEq, Clone)]
2173 struct Foo<T> {
2174     a: i32,
2175     b: T
2176 }
2177 ```
2178
2179 The generated `impl` for `PartialEq` is equivalent to
2180
2181 ```
2182 # struct Foo<T> { a: i32, b: T }
2183 impl<T: PartialEq> PartialEq for Foo<T> {
2184     fn eq(&self, other: &Foo<T>) -> bool {
2185         self.a == other.a && self.b == other.b
2186     }
2187
2188     fn ne(&self, other: &Foo<T>) -> bool {
2189         self.a != other.a || self.b != other.b
2190     }
2191 }
2192 ```
2193
2194 ### Compiler Features
2195
2196 Certain aspects of Rust may be implemented in the compiler, but they're not
2197 necessarily ready for every-day use. These features are often of "prototype
2198 quality" or "almost production ready", but may not be stable enough to be
2199 considered a full-fledged language feature.
2200
2201 For this reason, Rust recognizes a special crate-level attribute of the form:
2202
2203 ```{.ignore}
2204 #![feature(feature1, feature2, feature3)]
2205 ```
2206
2207 This directive informs the compiler that the feature list: `feature1`,
2208 `feature2`, and `feature3` should all be enabled. This is only recognized at a
2209 crate-level, not at a module-level. Without this directive, all features are
2210 considered off, and using the features will result in a compiler error.
2211
2212 The currently implemented features of the reference compiler are:
2213
2214 * `advanced_slice_patterns` - See the [match expressions](#match-expressions)
2215                               section for discussion; the exact semantics of
2216                               slice patterns are subject to change, so some types
2217                               are still unstable.
2218
2219 * `slice_patterns` - OK, actually, slice patterns are just scary and
2220                      completely unstable.
2221
2222 * `asm` - The `asm!` macro provides a means for inline assembly. This is often
2223           useful, but the exact syntax for this feature along with its
2224           semantics are likely to change, so this macro usage must be opted
2225           into.
2226
2227 * `associated_consts` - Allows constants to be defined in `impl` and `trait`
2228                         blocks, so that they can be associated with a type or
2229                         trait in a similar manner to methods and associated
2230                         types.
2231
2232 * `box_patterns` - Allows `box` patterns, the exact semantics of which
2233                    is subject to change.
2234
2235 * `box_syntax` - Allows use of `box` expressions, the exact semantics of which
2236                  is subject to change.
2237
2238 * `cfg_target_vendor` - Allows conditional compilation using the `target_vendor`
2239                         matcher which is subject to change.
2240
2241 * `concat_idents` - Allows use of the `concat_idents` macro, which is in many
2242                     ways insufficient for concatenating identifiers, and may be
2243                     removed entirely for something more wholesome.
2244
2245 * `custom_attribute` - Allows the usage of attributes unknown to the compiler
2246                        so that new attributes can be added in a backwards compatible
2247                        manner (RFC 572).
2248
2249 * `custom_derive` - Allows the use of `#[derive(Foo,Bar)]` as sugar for
2250                     `#[derive_Foo] #[derive_Bar]`, which can be user-defined syntax
2251                     extensions.
2252
2253 * `intrinsics` - Allows use of the "rust-intrinsics" ABI. Compiler intrinsics
2254                  are inherently unstable and no promise about them is made.
2255
2256 * `lang_items` - Allows use of the `#[lang]` attribute. Like `intrinsics`,
2257                  lang items are inherently unstable and no promise about them
2258                  is made.
2259
2260 * `link_args` - This attribute is used to specify custom flags to the linker,
2261                 but usage is strongly discouraged. The compiler's usage of the
2262                 system linker is not guaranteed to continue in the future, and
2263                 if the system linker is not used then specifying custom flags
2264                 doesn't have much meaning.
2265
2266 * `link_llvm_intrinsics` – Allows linking to LLVM intrinsics via
2267                            `#[link_name="llvm.*"]`.
2268
2269 * `linkage` - Allows use of the `linkage` attribute, which is not portable.
2270
2271 * `log_syntax` - Allows use of the `log_syntax` macro attribute, which is a
2272                  nasty hack that will certainly be removed.
2273
2274 * `main` - Allows use of the `#[main]` attribute, which changes the entry point
2275            into a Rust program. This capability is subject to change.
2276
2277 * `macro_reexport` - Allows macros to be re-exported from one crate after being imported
2278                      from another. This feature was originally designed with the sole
2279                      use case of the Rust standard library in mind, and is subject to
2280                      change.
2281
2282 * `non_ascii_idents` - The compiler supports the use of non-ascii identifiers,
2283                        but the implementation is a little rough around the
2284                        edges, so this can be seen as an experimental feature
2285                        for now until the specification of identifiers is fully
2286                        fleshed out.
2287
2288 * `no_std` - Allows the `#![no_std]` crate attribute, which disables the implicit
2289              `extern crate std`. This typically requires use of the unstable APIs
2290              behind the libstd "facade", such as libcore and libcollections. It
2291              may also cause problems when using syntax extensions, including
2292              `#[derive]`.
2293
2294 * `on_unimplemented` - Allows the `#[rustc_on_unimplemented]` attribute, which allows
2295                        trait definitions to add specialized notes to error messages
2296                        when an implementation was expected but not found.
2297
2298 * `optin_builtin_traits` - Allows the definition of default and negative trait
2299                            implementations. Experimental.
2300
2301 * `plugin` - Usage of [compiler plugins][plugin] for custom lints or syntax extensions.
2302              These depend on compiler internals and are subject to change.
2303
2304 * `plugin_registrar` - Indicates that a crate provides [compiler plugins][plugin].
2305
2306 * `quote` - Allows use of the `quote_*!` family of macros, which are
2307             implemented very poorly and will likely change significantly
2308             with a proper implementation.
2309
2310 * `rustc_attrs` - Gates internal `#[rustc_*]` attributes which may be
2311                   for internal use only or have meaning added to them in the future.
2312
2313 * `rustc_diagnostic_macros`- A mysterious feature, used in the implementation
2314                              of rustc, not meant for mortals.
2315
2316 * `simd` - Allows use of the `#[simd]` attribute, which is overly simple and
2317            not the SIMD interface we want to expose in the long term.
2318
2319 * `simd_ffi` - Allows use of SIMD vectors in signatures for foreign functions.
2320                The SIMD interface is subject to change.
2321
2322 * `staged_api` - Allows usage of stability markers and `#![staged_api]` in a
2323                  crate. Stability markers are also attributes: `#[stable]`,
2324                  `#[unstable]`, and `#[deprecated]` are the three levels.
2325
2326 * `start` - Allows use of the `#[start]` attribute, which changes the entry point
2327             into a Rust program. This capability, especially the signature for the
2328             annotated function, is subject to change.
2329
2330 * `thread_local` - The usage of the `#[thread_local]` attribute is experimental
2331                    and should be seen as unstable. This attribute is used to
2332                    declare a `static` as being unique per-thread leveraging
2333                    LLVM's implementation which works in concert with the kernel
2334                    loader and dynamic linker. This is not necessarily available
2335                    on all platforms, and usage of it is discouraged.
2336
2337 * `trace_macros` - Allows use of the `trace_macros` macro, which is a nasty
2338                    hack that will certainly be removed.
2339
2340 * `unboxed_closures` - Rust's new closure design, which is currently a work in
2341                        progress feature with many known bugs.
2342
2343 * `unsafe_no_drop_flag` - Allows use of the `#[unsafe_no_drop_flag]` attribute,
2344                           which removes hidden flag added to a type that
2345                           implements the `Drop` trait. The design for the
2346                           `Drop` flag is subject to change, and this feature
2347                           may be removed in the future.
2348
2349 * `unmarked_api` - Allows use of items within a `#![staged_api]` crate
2350                    which have not been marked with a stability marker.
2351                    Such items should not be allowed by the compiler to exist,
2352                    so if you need this there probably is a compiler bug.
2353
2354 * `visible_private_types` - Allows public APIs to expose otherwise private
2355                             types, e.g. as the return type of a public function.
2356                             This capability may be removed in the future.
2357
2358 * `allow_internal_unstable` - Allows `macro_rules!` macros to be tagged with the
2359                               `#[allow_internal_unstable]` attribute, designed
2360                               to allow `std` macros to call
2361                               `#[unstable]`/feature-gated functionality
2362                               internally without imposing on callers
2363                               (i.e. making them behave like function calls in
2364                               terms of encapsulation).
2365 * - `default_type_parameter_fallback` - Allows type parameter defaults to
2366                                         influence type inference.
2367 * - `braced_empty_structs` - Allows use of empty structs and enum variants with braces.
2368
2369 If a feature is promoted to a language feature, then all existing programs will
2370 start to receive compilation warnings about `#![feature]` directives which enabled
2371 the new feature (because the directive is no longer necessary). However, if a
2372 feature is decided to be removed from the language, errors will be issued (if
2373 there isn't a parser error first). The directive in this case is no longer
2374 necessary, and it's likely that existing code will break if the feature isn't
2375 removed.
2376
2377 If an unknown feature is found in a directive, it results in a compiler error.
2378 An unknown feature is one which has never been recognized by the compiler.
2379
2380 # Statements and expressions
2381
2382 Rust is _primarily_ an expression language. This means that most forms of
2383 value-producing or effect-causing evaluation are directed by the uniform syntax
2384 category of _expressions_. Each kind of expression can typically _nest_ within
2385 each other kind of expression, and rules for evaluation of expressions involve
2386 specifying both the value produced by the expression and the order in which its
2387 sub-expressions are themselves evaluated.
2388
2389 In contrast, statements in Rust serve _mostly_ to contain and explicitly
2390 sequence expression evaluation.
2391
2392 ## Statements
2393
2394 A _statement_ is a component of a block, which is in turn a component of an
2395 outer [expression](#expressions) or [function](#functions).
2396
2397 Rust has two kinds of statement: [declaration
2398 statements](#declaration-statements) and [expression
2399 statements](#expression-statements).
2400
2401 ### Declaration statements
2402
2403 A _declaration statement_ is one that introduces one or more *names* into the
2404 enclosing statement block. The declared names may denote new variables or new
2405 items.
2406
2407 #### Item declarations
2408
2409 An _item declaration statement_ has a syntactic form identical to an
2410 [item](#items) declaration within a module. Declaring an item &mdash; a
2411 function, enumeration, struct, type, static, trait, implementation or module
2412 &mdash; locally within a statement block is simply a way of restricting its
2413 scope to a narrow region containing all of its uses; it is otherwise identical
2414 in meaning to declaring the item outside the statement block.
2415
2416 > **Note**: there is no implicit capture of the function's dynamic environment when
2417 > declaring a function-local item.
2418
2419 #### Variable declarations
2420
2421 A _variable declaration_ introduces a new set of variable, given by a pattern. The
2422 pattern may be followed by a type annotation, and/or an initializer expression.
2423 When no type annotation is given, the compiler will infer the type, or signal
2424 an error if insufficient type information is available for definite inference.
2425 Any variables introduced by a variable declaration are visible from the point of
2426 declaration until the end of the enclosing block scope.
2427
2428 ### Expression statements
2429
2430 An _expression statement_ is one that evaluates an [expression](#expressions)
2431 and ignores its result. The type of an expression statement `e;` is always
2432 `()`, regardless of the type of `e`. As a rule, an expression statement's
2433 purpose is to trigger the effects of evaluating its expression.
2434
2435 ## Expressions
2436
2437 An expression may have two roles: it always produces a *value*, and it may have
2438 *effects* (otherwise known as "side effects"). An expression *evaluates to* a
2439 value, and has effects during *evaluation*. Many expressions contain
2440 sub-expressions (operands). The meaning of each kind of expression dictates
2441 several things:
2442
2443 * Whether or not to evaluate the sub-expressions when evaluating the expression
2444 * The order in which to evaluate the sub-expressions
2445 * How to combine the sub-expressions' values to obtain the value of the expression
2446
2447 In this way, the structure of expressions dictates the structure of execution.
2448 Blocks are just another kind of expression, so blocks, statements, expressions,
2449 and blocks again can recursively nest inside each other to an arbitrary depth.
2450
2451 #### Lvalues, rvalues and temporaries
2452
2453 Expressions are divided into two main categories: _lvalues_ and _rvalues_.
2454 Likewise within each expression, sub-expressions may occur in _lvalue context_
2455 or _rvalue context_. The evaluation of an expression depends both on its own
2456 category and the context it occurs within.
2457
2458 An lvalue is an expression that represents a memory location. These expressions
2459 are [paths](#path-expressions) (which refer to local variables, function and
2460 method arguments, or static variables), dereferences (`*expr`), [indexing
2461 expressions](#index-expressions) (`expr[expr]`), and [field
2462 references](#field-expressions) (`expr.f`). All other expressions are rvalues.
2463
2464 The left operand of an [assignment](#assignment-expressions) or
2465 [compound-assignment](#compound-assignment-expressions) expression is
2466 an lvalue context, as is the single operand of a unary
2467 [borrow](#unary-operator-expressions). The discriminant or subject of
2468 a [match expression](#match-expressions) may be an lvalue context, if
2469 ref bindings are made, but is otherwise an rvalue context. All other
2470 expression contexts are rvalue contexts.
2471
2472 When an lvalue is evaluated in an _lvalue context_, it denotes a memory
2473 location; when evaluated in an _rvalue context_, it denotes the value held _in_
2474 that memory location.
2475
2476 ##### Temporary lifetimes
2477
2478 When an rvalue is used in an lvalue context, a temporary un-named
2479 lvalue is created and used instead. The lifetime of temporary values
2480 is typically the innermost enclosing statement; the tail expression of
2481 a block is considered part of the statement that encloses the block.
2482
2483 When a temporary rvalue is being created that is assigned into a `let`
2484 declaration, however, the temporary is created with the lifetime of
2485 the enclosing block instead, as using the enclosing statement (the
2486 `let` declaration) would be a guaranteed error (since a pointer to the
2487 temporary would be stored into a variable, but the temporary would be
2488 freed before the variable could be used). The compiler uses simple
2489 syntactic rules to decide which values are being assigned into a `let`
2490 binding, and therefore deserve a longer temporary lifetime.
2491
2492 Here are some examples:
2493
2494 - `let x = foo(&temp())`. The expression `temp()` is an rvalue. As it
2495   is being borrowed, a temporary is created which will be freed after
2496   the innermost enclosing statement (the `let` declaration, in this case).
2497 - `let x = temp().foo()`. This is the same as the previous example,
2498   except that the value of `temp()` is being borrowed via autoref on a
2499   method-call. Here we are assuming that `foo()` is an `&self` method
2500   defined in some trait, say `Foo`. In other words, the expression
2501   `temp().foo()` is equivalent to `Foo::foo(&temp())`.
2502 - `let x = &temp()`. Here, the same temporary is being assigned into
2503   `x`, rather than being passed as a parameter, and hence the
2504   temporary's lifetime is considered to be the enclosing block.
2505 - `let x = SomeStruct { foo: &temp() }`. As in the previous case, the
2506   temporary is assigned into a struct which is then assigned into a
2507   binding, and hence it is given the lifetime of the enclosing block.
2508 - `let x = [ &temp() ]`. As in the previous case, the
2509   temporary is assigned into an array which is then assigned into a
2510   binding, and hence it is given the lifetime of the enclosing block.
2511 - `let ref x = temp()`. In this case, the temporary is created using a ref binding,
2512   but the result is the same: the lifetime is extended to the enclosing block.
2513
2514 #### Moved and copied types
2515
2516 When a [local variable](#variables) is used as an
2517 [rvalue](#lvalues-rvalues-and-temporaries), the variable will be copied
2518 if its type implements `Copy`. All others are moved.
2519
2520 ### Literal expressions
2521
2522 A _literal expression_ consists of one of the [literal](#literals) forms
2523 described earlier. It directly describes a number, character, string, boolean
2524 value, or the unit value.
2525
2526 ```{.literals}
2527 ();        // unit type
2528 "hello";   // string type
2529 '5';       // character type
2530 5;         // integer type
2531 ```
2532
2533 ### Path expressions
2534
2535 A [path](#paths) used as an expression context denotes either a local variable
2536 or an item. Path expressions are [lvalues](#lvalues-rvalues-and-temporaries).
2537
2538 ### Tuple expressions
2539
2540 Tuples are written by enclosing zero or more comma-separated expressions in
2541 parentheses. They are used to create [tuple-typed](#tuple-types) values.
2542
2543 ```{.tuple}
2544 (0.0, 4.5);
2545 ("a", 4usize, true);
2546 ```
2547
2548 You can disambiguate a single-element tuple from a value in parentheses with a
2549 comma:
2550
2551 ```
2552 (0,); // single-element tuple
2553 (0); // zero in parentheses
2554 ```
2555
2556 ### Struct expressions
2557
2558 There are several forms of struct expressions. A _struct expression_
2559 consists of the [path](#paths) of a [struct item](#structs), followed by
2560 a brace-enclosed list of one or more comma-separated name-value pairs,
2561 providing the field values of a new instance of the struct. A field name
2562 can be any identifier, and is separated from its value expression by a colon.
2563 The location denoted by a struct field is mutable if and only if the
2564 enclosing struct is mutable.
2565
2566 A _tuple struct expression_ consists of the [path](#paths) of a [struct
2567 item](#structs), followed by a parenthesized list of one or more
2568 comma-separated expressions (in other words, the path of a struct item
2569 followed by a tuple expression). The struct item must be a tuple struct
2570 item.
2571
2572 A _unit-like struct expression_ consists only of the [path](#paths) of a
2573 [struct item](#structs).
2574
2575 The following are examples of struct expressions:
2576
2577 ```
2578 # struct Point { x: f64, y: f64 }
2579 # struct TuplePoint(f64, f64);
2580 # mod game { pub struct User<'a> { pub name: &'a str, pub age: u32, pub score: usize } }
2581 # struct Cookie; fn some_fn<T>(t: T) {}
2582 Point {x: 10.0, y: 20.0};
2583 TuplePoint(10.0, 20.0);
2584 let u = game::User {name: "Joe", age: 35, score: 100_000};
2585 some_fn::<Cookie>(Cookie);
2586 ```
2587
2588 A struct expression forms a new value of the named struct type. Note
2589 that for a given *unit-like* struct type, this will always be the same
2590 value.
2591
2592 A struct expression can terminate with the syntax `..` followed by an
2593 expression to denote a functional update. The expression following `..` (the
2594 base) must have the same struct type as the new struct type being formed.
2595 The entire expression denotes the result of constructing a new struct (with
2596 the same type as the base expression) with the given values for the fields that
2597 were explicitly specified and the values in the base expression for all other
2598 fields.
2599
2600 ```
2601 # struct Point3d { x: i32, y: i32, z: i32 }
2602 let base = Point3d {x: 1, y: 2, z: 3};
2603 Point3d {y: 0, z: 10, .. base};
2604 ```
2605
2606 ### Block expressions
2607
2608 A _block expression_ is similar to a module in terms of the declarations that
2609 are possible. Each block conceptually introduces a new namespace scope. Use
2610 items can bring new names into scopes and declared items are in scope for only
2611 the block itself.
2612
2613 A block will execute each statement sequentially, and then execute the
2614 expression (if given). If the block ends in a statement, its value is `()`:
2615
2616 ```
2617 let x: () = { println!("Hello."); };
2618 ```
2619
2620 If it ends in an expression, its value and type are that of the expression:
2621
2622 ```
2623 let x: i32 = { println!("Hello."); 5 };
2624
2625 assert_eq!(5, x);
2626 ```
2627
2628 ### Method-call expressions
2629
2630 A _method call_ consists of an expression followed by a single dot, an
2631 identifier, and a parenthesized expression-list. Method calls are resolved to
2632 methods on specific traits, either statically dispatching to a method if the
2633 exact `self`-type of the left-hand-side is known, or dynamically dispatching if
2634 the left-hand-side expression is an indirect [trait object](#trait-objects).
2635
2636 ### Field expressions
2637
2638 A _field expression_ consists of an expression followed by a single dot and an
2639 identifier, when not immediately followed by a parenthesized expression-list
2640 (the latter is a [method call expression](#method-call-expressions)). A field
2641 expression denotes a field of a [struct](#struct-types).
2642
2643 ```{.ignore .field}
2644 mystruct.myfield;
2645 foo().x;
2646 (Struct {a: 10, b: 20}).a;
2647 ```
2648
2649 A field access is an [lvalue](#lvalues-rvalues-and-temporaries) referring to
2650 the value of that field. When the type providing the field inherits mutability,
2651 it can be [assigned](#assignment-expressions) to.
2652
2653 Also, if the type of the expression to the left of the dot is a
2654 pointer, it is automatically dereferenced as many times as necessary
2655 to make the field access possible. In cases of ambiguity, we prefer
2656 fewer autoderefs to more.
2657
2658 ### Array expressions
2659
2660 An [array](#array-and-slice-types) _expression_ is written by enclosing zero
2661 or more comma-separated expressions of uniform type in square brackets.
2662
2663 In the `[expr ';' expr]` form, the expression after the `';'` must be a
2664 constant expression that can be evaluated at compile time, such as a
2665 [literal](#literals) or a [static item](#static-items).
2666
2667 ```
2668 [1, 2, 3, 4];
2669 ["a", "b", "c", "d"];
2670 [0; 128];              // array with 128 zeros
2671 [0u8, 0u8, 0u8, 0u8];
2672 ```
2673
2674 ### Index expressions
2675
2676 [Array](#array-and-slice-types)-typed expressions can be indexed by
2677 writing a square-bracket-enclosed expression (the index) after them. When the
2678 array is mutable, the resulting [lvalue](#lvalues-rvalues-and-temporaries) can
2679 be assigned to.
2680
2681 Indices are zero-based, and may be of any integral type. Vector access is
2682 bounds-checked at compile-time for constant arrays being accessed with a constant index value.
2683 Otherwise a check will be performed at run-time that will put the thread in a _panicked state_ if it fails.
2684
2685 ```{should-fail}
2686 ([1, 2, 3, 4])[0];
2687
2688 let x = (["a", "b"])[10]; // compiler error: const index-expr is out of bounds
2689
2690 let n = 10;
2691 let y = (["a", "b"])[n]; // panics
2692
2693 let arr = ["a", "b"];
2694 arr[10]; // panics
2695 ```
2696
2697 Also, if the type of the expression to the left of the brackets is a
2698 pointer, it is automatically dereferenced as many times as necessary
2699 to make the indexing possible. In cases of ambiguity, we prefer fewer
2700 autoderefs to more.
2701
2702 ### Range expressions
2703
2704 The `..` operator will construct an object of one of the `std::ops::Range` variants.
2705
2706 ```
2707 1..2;   // std::ops::Range
2708 3..;    // std::ops::RangeFrom
2709 ..4;    // std::ops::RangeTo
2710 ..;     // std::ops::RangeFull
2711 ```
2712
2713 The following expressions are equivalent.
2714
2715 ```
2716 let x = std::ops::Range {start: 0, end: 10};
2717 let y = 0..10;
2718
2719 assert_eq!(x, y);
2720 ```
2721
2722 ### Unary operator expressions
2723
2724 Rust defines the following unary operators. They are all written as prefix operators,
2725 before the expression they apply to.
2726
2727 * `-`
2728   : Negation. May only be applied to numeric types.
2729 * `*`
2730   : Dereference. When applied to a [pointer](#pointer-types) it denotes the
2731     pointed-to location. For pointers to mutable locations, the resulting
2732     [lvalue](#lvalues-rvalues-and-temporaries) can be assigned to.
2733     On non-pointer types, it calls the `deref` method of the `std::ops::Deref`
2734     trait, or the `deref_mut` method of the `std::ops::DerefMut` trait (if
2735     implemented by the type and required for an outer expression that will or
2736     could mutate the dereference), and produces the result of dereferencing the
2737     `&` or `&mut` borrowed pointer returned from the overload method.
2738 * `!`
2739   : Logical negation. On the boolean type, this flips between `true` and
2740     `false`. On integer types, this inverts the individual bits in the
2741     two's complement representation of the value.
2742 * `&` and `&mut`
2743   : Borrowing. When applied to an lvalue, these operators produce a
2744     reference (pointer) to the lvalue. The lvalue is also placed into
2745     a borrowed state for the duration of the reference. For a shared
2746     borrow (`&`), this implies that the lvalue may not be mutated, but
2747     it may be read or shared again. For a mutable borrow (`&mut`), the
2748     lvalue may not be accessed in any way until the borrow expires.
2749     If the `&` or `&mut` operators are applied to an rvalue, a
2750     temporary value is created; the lifetime of this temporary value
2751     is defined by [syntactic rules](#temporary-lifetimes).
2752
2753 ### Binary operator expressions
2754
2755 Binary operators expressions are given in terms of [operator
2756 precedence](#operator-precedence).
2757
2758 #### Arithmetic operators
2759
2760 Binary arithmetic expressions are syntactic sugar for calls to built-in traits,
2761 defined in the `std::ops` module of the `std` library. This means that
2762 arithmetic operators can be overridden for user-defined types. The default
2763 meaning of the operators on standard types is given here.
2764
2765 * `+`
2766   : Addition and array/string concatenation.
2767     Calls the `add` method on the `std::ops::Add` trait.
2768 * `-`
2769   : Subtraction.
2770     Calls the `sub` method on the `std::ops::Sub` trait.
2771 * `*`
2772   : Multiplication.
2773     Calls the `mul` method on the `std::ops::Mul` trait.
2774 * `/`
2775   : Quotient.
2776     Calls the `div` method on the `std::ops::Div` trait.
2777 * `%`
2778   : Remainder.
2779     Calls the `rem` method on the `std::ops::Rem` trait.
2780
2781 #### Bitwise operators
2782
2783 Like the [arithmetic operators](#arithmetic-operators), bitwise operators are
2784 syntactic sugar for calls to methods of built-in traits. This means that
2785 bitwise operators can be overridden for user-defined types. The default
2786 meaning of the operators on standard types is given here. Bitwise `&`, `|` and
2787 `^` applied to boolean arguments are equivalent to logical `&&`, `||` and `!=`
2788 evaluated in non-lazy fashion.
2789
2790 * `&`
2791   : Bitwise AND.
2792     Calls the `bitand` method of the `std::ops::BitAnd` trait.
2793 * `|`
2794   : Bitwise inclusive OR.
2795     Calls the `bitor` method of the `std::ops::BitOr` trait.
2796 * `^`
2797   : Bitwise exclusive OR.
2798     Calls the `bitxor` method of the `std::ops::BitXor` trait.
2799 * `<<`
2800   : Left shift.
2801     Calls the `shl` method of the `std::ops::Shl` trait.
2802 * `>>`
2803   : Right shift (arithmetic).
2804     Calls the `shr` method of the `std::ops::Shr` trait.
2805
2806 #### Lazy boolean operators
2807
2808 The operators `||` and `&&` may be applied to operands of boolean type. The
2809 `||` operator denotes logical 'or', and the `&&` operator denotes logical
2810 'and'. They differ from `|` and `&` in that the right-hand operand is only
2811 evaluated when the left-hand operand does not already determine the result of
2812 the expression. That is, `||` only evaluates its right-hand operand when the
2813 left-hand operand evaluates to `false`, and `&&` only when it evaluates to
2814 `true`.
2815
2816 #### Comparison operators
2817
2818 Comparison operators are, like the [arithmetic
2819 operators](#arithmetic-operators), and [bitwise operators](#bitwise-operators),
2820 syntactic sugar for calls to built-in traits. This means that comparison
2821 operators can be overridden for user-defined types. The default meaning of the
2822 operators on standard types is given here.
2823
2824 * `==`
2825   : Equal to.
2826     Calls the `eq` method on the `std::cmp::PartialEq` trait.
2827 * `!=`
2828   : Unequal to.
2829     Calls the `ne` method on the `std::cmp::PartialEq` trait.
2830 * `<`
2831   : Less than.
2832     Calls the `lt` method on the `std::cmp::PartialOrd` trait.
2833 * `>`
2834   : Greater than.
2835     Calls the `gt` method on the `std::cmp::PartialOrd` trait.
2836 * `<=`
2837   : Less than or equal.
2838     Calls the `le` method on the `std::cmp::PartialOrd` trait.
2839 * `>=`
2840   : Greater than or equal.
2841     Calls the `ge` method on the `std::cmp::PartialOrd` trait.
2842
2843 #### Type cast expressions
2844
2845 A type cast expression is denoted with the binary operator `as`.
2846
2847 Executing an `as` expression casts the value on the left-hand side to the type
2848 on the right-hand side.
2849
2850 An example of an `as` expression:
2851
2852 ```
2853 # fn sum(values: &[f64]) -> f64 { 0.0 }
2854 # fn len(values: &[f64]) -> i32 { 0 }
2855
2856 fn average(values: &[f64]) -> f64 {
2857     let sum: f64 = sum(values);
2858     let size: f64 = len(values) as f64;
2859     sum / size
2860 }
2861 ```
2862
2863 Some of the conversions which can be done through the `as` operator
2864 can also be done implicitly at various points in the program, such as
2865 argument passing and assignment to a `let` binding with an explicit
2866 type. Implicit conversions are limited to "harmless" conversions that
2867 do not lose information and which have minimal or no risk of
2868 surprising side-effects on the dynamic execution semantics.
2869
2870 #### Assignment expressions
2871
2872 An _assignment expression_ consists of an
2873 [lvalue](#lvalues-rvalues-and-temporaries) expression followed by an equals
2874 sign (`=`) and an [rvalue](#lvalues-rvalues-and-temporaries) expression.
2875
2876 Evaluating an assignment expression [either copies or
2877 moves](#moved-and-copied-types) its right-hand operand to its left-hand
2878 operand.
2879
2880 ```
2881 # let mut x = 0;
2882 # let y = 0;
2883 x = y;
2884 ```
2885
2886 #### Compound assignment expressions
2887
2888 The `+`, `-`, `*`, `/`, `%`, `&`, `|`, `^`, `<<`, and `>>` operators may be
2889 composed with the `=` operator. The expression `lval OP= val` is equivalent to
2890 `lval = lval OP val`. For example, `x = x + 1` may be written as `x += 1`.
2891
2892 Any such expression always has the [`unit`](#tuple-types) type.
2893
2894 #### Operator precedence
2895
2896 The precedence of Rust binary operators is ordered as follows, going from
2897 strong to weak:
2898
2899 ```{.text .precedence}
2900 as
2901 * / %
2902 + -
2903 << >>
2904 &
2905 ^
2906 |
2907 == != < > <= >=
2908 &&
2909 ||
2910 = ..
2911 ```
2912
2913 Operators at the same precedence level are evaluated left-to-right. [Unary
2914 operators](#unary-operator-expressions) have the same precedence level and are
2915 stronger than any of the binary operators.
2916
2917 ### Grouped expressions
2918
2919 An expression enclosed in parentheses evaluates to the result of the enclosed
2920 expression. Parentheses can be used to explicitly specify evaluation order
2921 within an expression.
2922
2923 An example of a parenthesized expression:
2924
2925 ```
2926 let x: i32 = (2 + 3) * 4;
2927 ```
2928
2929
2930 ### Call expressions
2931
2932 A _call expression_ invokes a function, providing zero or more input variables
2933 and an optional location to move the function's output into. If the function
2934 eventually returns, then the expression completes.
2935
2936 Some examples of call expressions:
2937
2938 ```
2939 # fn add(x: i32, y: i32) -> i32 { 0 }
2940
2941 let x: i32 = add(1i32, 2i32);
2942 let pi: Result<f32, _> = "3.14".parse();
2943 ```
2944
2945 ### Lambda expressions
2946
2947 A _lambda expression_ (sometimes called an "anonymous function expression")
2948 defines a function and denotes it as a value, in a single expression. A lambda
2949 expression is a pipe-symbol-delimited (`|`) list of identifiers followed by an
2950 expression.
2951
2952 A lambda expression denotes a function that maps a list of parameters
2953 (`ident_list`) onto the expression that follows the `ident_list`. The
2954 identifiers in the `ident_list` are the parameters to the function. These
2955 parameters' types need not be specified, as the compiler infers them from
2956 context.
2957
2958 Lambda expressions are most useful when passing functions as arguments to other
2959 functions, as an abbreviation for defining and capturing a separate function.
2960
2961 Significantly, lambda expressions _capture their environment_, which regular
2962 [function definitions](#functions) do not. The exact type of capture depends
2963 on the [function type](#function-types) inferred for the lambda expression. In
2964 the simplest and least-expensive form (analogous to a ```|| { }``` expression),
2965 the lambda expression captures its environment by reference, effectively
2966 borrowing pointers to all outer variables mentioned inside the function.
2967 Alternately, the compiler may infer that a lambda expression should copy or
2968 move values (depending on their type) from the environment into the lambda
2969 expression's captured environment.
2970
2971 In this example, we define a function `ten_times` that takes a higher-order
2972 function argument, and we then call it with a lambda expression as an argument:
2973
2974 ```
2975 fn ten_times<F>(f: F) where F: Fn(i32) {
2976     for index in 0..10 {
2977         f(index);
2978     }
2979 }
2980
2981 ten_times(|j| println!("hello, {}", j));
2982 ```
2983
2984 ### Infinite loops
2985
2986 A `loop` expression denotes an infinite loop.
2987
2988 A `loop` expression may optionally have a _label_. The label is written as
2989 a lifetime preceding the loop expression, as in `'foo: loop{ }`. If a
2990 label is present, then labeled `break` and `continue` expressions nested
2991 within this loop may exit out of this loop or return control to its head.
2992 See [break expressions](#break-expressions) and [continue
2993 expressions](#continue-expressions).
2994
2995 ### `break` expressions
2996
2997 A `break` expression has an optional _label_. If the label is absent, then
2998 executing a `break` expression immediately terminates the innermost loop
2999 enclosing it. It is only permitted in the body of a loop. If the label is
3000 present, then `break 'foo` terminates the loop with label `'foo`, which need not
3001 be the innermost label enclosing the `break` expression, but must enclose it.
3002
3003 ### `continue` expressions
3004
3005 A `continue` expression has an optional _label_. If the label is absent, then
3006 executing a `continue` expression immediately terminates the current iteration
3007 of the innermost loop enclosing it, returning control to the loop *head*. In
3008 the case of a `while` loop, the head is the conditional expression controlling
3009 the loop. In the case of a `for` loop, the head is the call-expression
3010 controlling the loop. If the label is present, then `continue 'foo` returns
3011 control to the head of the loop with label `'foo`, which need not be the
3012 innermost label enclosing the `break` expression, but must enclose it.
3013
3014 A `continue` expression is only permitted in the body of a loop.
3015
3016 ### `while` loops
3017
3018 A `while` loop begins by evaluating the boolean loop conditional expression.
3019 If the loop conditional expression evaluates to `true`, the loop body block
3020 executes and control returns to the loop conditional expression. If the loop
3021 conditional expression evaluates to `false`, the `while` expression completes.
3022
3023 An example:
3024
3025 ```
3026 let mut i = 0;
3027
3028 while i < 10 {
3029     println!("hello");
3030     i = i + 1;
3031 }
3032 ```
3033
3034 Like `loop` expressions, `while` loops can be controlled with `break` or
3035 `continue`, and may optionally have a _label_. See [infinite
3036 loops](#infinite-loops), [break expressions](#break-expressions), and
3037 [continue expressions](#continue-expressions) for more information.
3038
3039 ### `for` expressions
3040
3041 A `for` expression is a syntactic construct for looping over elements provided
3042 by an implementation of `std::iter::IntoIterator`.
3043
3044 An example of a `for` loop over the contents of an array:
3045
3046 ```
3047 # type Foo = i32;
3048 # fn bar(f: &Foo) { }
3049 # let a = 0;
3050 # let b = 0;
3051 # let c = 0;
3052
3053 let v: &[Foo] = &[a, b, c];
3054
3055 for e in v {
3056     bar(e);
3057 }
3058 ```
3059
3060 An example of a for loop over a series of integers:
3061
3062 ```
3063 # fn bar(b:usize) { }
3064 for i in 0..256 {
3065     bar(i);
3066 }
3067 ```
3068
3069 Like `loop` expressions, `for` loops can be controlled with `break` or
3070 `continue`, and may optionally have a _label_. See [infinite
3071 loops](#infinite-loops), [break expressions](#break-expressions), and
3072 [continue expressions](#continue-expressions) for more information.
3073
3074 ### `if` expressions
3075
3076 An `if` expression is a conditional branch in program control. The form of an
3077 `if` expression is a condition expression, followed by a consequent block, any
3078 number of `else if` conditions and blocks, and an optional trailing `else`
3079 block. The condition expressions must have type `bool`. If a condition
3080 expression evaluates to `true`, the consequent block is executed and any
3081 subsequent `else if` or `else` block is skipped. If a condition expression
3082 evaluates to `false`, the consequent block is skipped and any subsequent `else
3083 if` condition is evaluated. If all `if` and `else if` conditions evaluate to
3084 `false` then any `else` block is executed.
3085
3086 ### `match` expressions
3087
3088 A `match` expression branches on a *pattern*. The exact form of matching that
3089 occurs depends on the pattern. Patterns consist of some combination of
3090 literals, destructured arrays or enum constructors, structs and tuples,
3091 variable binding specifications, wildcards (`..`), and placeholders (`_`). A
3092 `match` expression has a *head expression*, which is the value to compare to
3093 the patterns. The type of the patterns must equal the type of the head
3094 expression.
3095
3096 In a pattern whose head expression has an `enum` type, a placeholder (`_`)
3097 stands for a *single* data field, whereas a wildcard `..` stands for *all* the
3098 fields of a particular variant.
3099
3100 A `match` behaves differently depending on whether or not the head expression
3101 is an [lvalue or an rvalue](#lvalues-rvalues-and-temporaries). If the head
3102 expression is an rvalue, it is first evaluated into a temporary location, and
3103 the resulting value is sequentially compared to the patterns in the arms until
3104 a match is found. The first arm with a matching pattern is chosen as the branch
3105 target of the `match`, any variables bound by the pattern are assigned to local
3106 variables in the arm's block, and control enters the block.
3107
3108 When the head expression is an lvalue, the match does not allocate a temporary
3109 location (however, a by-value binding may copy or move from the lvalue). When
3110 possible, it is preferable to match on lvalues, as the lifetime of these
3111 matches inherits the lifetime of the lvalue, rather than being restricted to
3112 the inside of the match.
3113
3114 An example of a `match` expression:
3115
3116 ```
3117 let x = 1;
3118
3119 match x {
3120     1 => println!("one"),
3121     2 => println!("two"),
3122     3 => println!("three"),
3123     4 => println!("four"),
3124     5 => println!("five"),
3125     _ => println!("something else"),
3126 }
3127 ```
3128
3129 Patterns that bind variables default to binding to a copy or move of the
3130 matched value (depending on the matched value's type). This can be changed to
3131 bind to a reference by using the `ref` keyword, or to a mutable reference using
3132 `ref mut`.
3133
3134 Subpatterns can also be bound to variables by the use of the syntax `variable @
3135 subpattern`. For example:
3136
3137 ```
3138 let x = 1;
3139
3140 match x {
3141     e @ 1 ... 5 => println!("got a range element {}", e),
3142     _ => println!("anything"),
3143 }
3144 ```
3145
3146 Patterns can also dereference pointers by using the `&`, `&mut` and `box`
3147 symbols, as appropriate. For example, these two matches on `x: &i32` are
3148 equivalent:
3149
3150 ```
3151 # let x = &3;
3152 let y = match *x { 0 => "zero", _ => "some" };
3153 let z = match x { &0 => "zero", _ => "some" };
3154
3155 assert_eq!(y, z);
3156 ```
3157
3158 Multiple match patterns may be joined with the `|` operator. A range of values
3159 may be specified with `...`. For example:
3160
3161 ```
3162 # let x = 2;
3163
3164 let message = match x {
3165     0 | 1  => "not many",
3166     2 ... 9 => "a few",
3167     _      => "lots"
3168 };
3169 ```
3170
3171 Range patterns only work on scalar types (like integers and characters; not
3172 like arrays and structs, which have sub-components). A range pattern may not
3173 be a sub-range of another range pattern inside the same `match`.
3174
3175 Finally, match patterns can accept *pattern guards* to further refine the
3176 criteria for matching a case. Pattern guards appear after the pattern and
3177 consist of a bool-typed expression following the `if` keyword. A pattern guard
3178 may refer to the variables bound within the pattern they follow.
3179
3180 ```
3181 # let maybe_digit = Some(0);
3182 # fn process_digit(i: i32) { }
3183 # fn process_other(i: i32) { }
3184
3185 let message = match maybe_digit {
3186     Some(x) if x < 10 => process_digit(x),
3187     Some(x) => process_other(x),
3188     None => panic!()
3189 };
3190 ```
3191
3192 ### `if let` expressions
3193
3194 An `if let` expression is semantically identical to an `if` expression but in place
3195 of a condition expression it expects a refutable let statement. If the value of the
3196 expression on the right hand side of the let statement matches the pattern, the corresponding
3197 block will execute, otherwise flow proceeds to the first `else` block that follows.
3198
3199 ```
3200 let dish = ("Ham", "Eggs");
3201
3202 // this body will be skipped because the pattern is refuted
3203 if let ("Bacon", b) = dish {
3204     println!("Bacon is served with {}", b);
3205 }
3206
3207 // this body will execute
3208 if let ("Ham", b) = dish {
3209     println!("Ham is served with {}", b);
3210 }
3211 ```
3212
3213 ### `while let` loops
3214
3215 A `while let` loop is semantically identical to a `while` loop but in place of a
3216 condition expression it expects a refutable let statement. If the value of the
3217 expression on the right hand side of the let statement matches the pattern, the
3218 loop body block executes and control returns to the pattern matching statement.
3219 Otherwise, the while expression completes.
3220
3221 ### `return` expressions
3222
3223 Return expressions are denoted with the keyword `return`. Evaluating a `return`
3224 expression moves its argument into the designated output location for the
3225 current function call, destroys the current function activation frame, and
3226 transfers control to the caller frame.
3227
3228 An example of a `return` expression:
3229
3230 ```
3231 fn max(a: i32, b: i32) -> i32 {
3232     if a > b {
3233         return a;
3234     }
3235     return b;
3236 }
3237 ```
3238
3239 # Type system
3240
3241 ## Types
3242
3243 Every variable, item and value in a Rust program has a type. The _type_ of a
3244 *value* defines the interpretation of the memory holding it.
3245
3246 Built-in types and type-constructors are tightly integrated into the language,
3247 in nontrivial ways that are not possible to emulate in user-defined types.
3248 User-defined types have limited capabilities.
3249
3250 ### Primitive types
3251
3252 The primitive types are the following:
3253
3254 * The boolean type `bool` with values `true` and `false`.
3255 * The machine types (integer and floating-point).
3256 * The machine-dependent integer types.
3257
3258 #### Machine types
3259
3260 The machine types are the following:
3261
3262 * The unsigned word types `u8`, `u16`, `u32` and `u64`, with values drawn from
3263   the integer intervals [0, 2^8 - 1], [0, 2^16 - 1], [0, 2^32 - 1] and
3264   [0, 2^64 - 1] respectively.
3265
3266 * The signed two's complement word types `i8`, `i16`, `i32` and `i64`, with
3267   values drawn from the integer intervals [-(2^(7)), 2^7 - 1],
3268   [-(2^(15)), 2^15 - 1], [-(2^(31)), 2^31 - 1], [-(2^(63)), 2^63 - 1]
3269   respectively.
3270
3271 * The IEEE 754-2008 `binary32` and `binary64` floating-point types: `f32` and
3272   `f64`, respectively.
3273
3274 #### Machine-dependent integer types
3275
3276 The `usize` type is an unsigned integer type with the same number of bits as the
3277 platform's pointer type. It can represent every memory address in the process.
3278
3279 The `isize` type is a signed integer type with the same number of bits as the
3280 platform's pointer type. The theoretical upper bound on object and array size
3281 is the maximum `isize` value. This ensures that `isize` can be used to calculate
3282 differences between pointers into an object or array and can address every byte
3283 within an object along with one byte past the end.
3284
3285 ### Textual types
3286
3287 The types `char` and `str` hold textual data.
3288
3289 A value of type `char` is a [Unicode scalar value](
3290 http://www.unicode.org/glossary/#unicode_scalar_value) (i.e. a code point that
3291 is not a surrogate), represented as a 32-bit unsigned word in the 0x0000 to
3292 0xD7FF or 0xE000 to 0x10FFFF range. A `[char]` array is effectively an UCS-4 /
3293 UTF-32 string.
3294
3295 A value of type `str` is a Unicode string, represented as an array of 8-bit
3296 unsigned bytes holding a sequence of UTF-8 code points. Since `str` is of
3297 unknown size, it is not a _first-class_ type, but can only be instantiated
3298 through a pointer type, such as `&str`.
3299
3300 ### Tuple types
3301
3302 A tuple *type* is a heterogeneous product of other types, called the *elements*
3303 of the tuple. It has no nominal name and is instead structurally typed.
3304
3305 Tuple types and values are denoted by listing the types or values of their
3306 elements, respectively, in a parenthesized, comma-separated list.
3307
3308 Because tuple elements don't have a name, they can only be accessed by
3309 pattern-matching or by using `N` directly as a field to access the
3310 `N`th element.
3311
3312 An example of a tuple type and its use:
3313
3314 ```
3315 type Pair<'a> = (i32, &'a str);
3316 let p: Pair<'static> = (10, "ten");
3317 let (a, b) = p;
3318
3319 assert_eq!(a, 10);
3320 assert_eq!(b, "ten");
3321 assert_eq!(p.0, 10);
3322 assert_eq!(p.1, "ten");
3323 ```
3324
3325 For historical reasons and convenience, the tuple type with no elements (`()`)
3326 is often called ‘unit’ or ‘the unit type’.
3327
3328 ### Array, and Slice types
3329
3330 Rust has two different types for a list of items:
3331
3332 * `[T; N]`, an 'array'
3333 * `&[T]`, a 'slice'
3334
3335 An array has a fixed size, and can be allocated on either the stack or the
3336 heap.
3337
3338 A slice is a 'view' into an array. It doesn't own the data it points
3339 to, it borrows it.
3340
3341 Examples:
3342
3343 ```{rust}
3344 // A stack-allocated array
3345 let array: [i32; 3] = [1, 2, 3];
3346
3347 // A heap-allocated array
3348 let vector: Vec<i32> = vec![1, 2, 3];
3349
3350 // A slice into an array
3351 let slice: &[i32] = &vector[..];
3352 ```
3353
3354 As you can see, the `vec!` macro allows you to create a `Vec<T>` easily. The
3355 `vec!` macro is also part of the standard library, rather than the language.
3356
3357 All in-bounds elements of arrays and slices are always initialized, and access
3358 to an array or slice is always bounds-checked.
3359
3360 ### Struct types
3361
3362 A `struct` *type* is a heterogeneous product of other types, called the
3363 *fields* of the type.[^structtype]
3364
3365 [^structtype]: `struct` types are analogous to `struct` types in C,
3366     the *record* types of the ML family,
3367     or the *struct* types of the Lisp family.
3368
3369 New instances of a `struct` can be constructed with a [struct
3370 expression](#struct-expressions).
3371
3372 The memory layout of a `struct` is undefined by default to allow for compiler
3373 optimizations like field reordering, but it can be fixed with the
3374 `#[repr(...)]` attribute. In either case, fields may be given in any order in
3375 a corresponding struct *expression*; the resulting `struct` value will always
3376 have the same memory layout.
3377
3378 The fields of a `struct` may be qualified by [visibility
3379 modifiers](#visibility-and-privacy), to allow access to data in a
3380 struct outside a module.
3381
3382 A _tuple struct_ type is just like a struct type, except that the fields are
3383 anonymous.
3384
3385 A _unit-like struct_ type is like a struct type, except that it has no
3386 fields. The one value constructed by the associated [struct
3387 expression](#struct-expressions) is the only value that inhabits such a
3388 type.
3389
3390 ### Enumerated types
3391
3392 An *enumerated type* is a nominal, heterogeneous disjoint union type, denoted
3393 by the name of an [`enum` item](#enumerations). [^enumtype]
3394
3395 [^enumtype]: The `enum` type is analogous to a `data` constructor declaration in
3396              ML, or a *pick ADT* in Limbo.
3397
3398 An [`enum` item](#enumerations) declares both the type and a number of *variant
3399 constructors*, each of which is independently named and takes an optional tuple
3400 of arguments.
3401
3402 New instances of an `enum` can be constructed by calling one of the variant
3403 constructors, in a [call expression](#call-expressions).
3404
3405 Any `enum` value consumes as much memory as the largest variant constructor for
3406 its corresponding `enum` type.
3407
3408 Enum types cannot be denoted *structurally* as types, but must be denoted by
3409 named reference to an [`enum` item](#enumerations).
3410
3411 ### Recursive types
3412
3413 Nominal types &mdash; [enumerations](#enumerated-types) and
3414 [structs](#struct-types) &mdash; may be recursive. That is, each `enum`
3415 constructor or `struct` field may refer, directly or indirectly, to the
3416 enclosing `enum` or `struct` type itself. Such recursion has restrictions:
3417
3418 * Recursive types must include a nominal type in the recursion
3419   (not mere [type definitions](grammar.html#type-definitions),
3420    or other structural types such as [arrays](#array-and-slice-types) or [tuples](#tuple-types)).
3421 * A recursive `enum` item must have at least one non-recursive constructor
3422   (in order to give the recursion a basis case).
3423 * The size of a recursive type must be finite;
3424   in other words the recursive fields of the type must be [pointer types](#pointer-types).
3425 * Recursive type definitions can cross module boundaries, but not module *visibility* boundaries,
3426   or crate boundaries (in order to simplify the module system and type checker).
3427
3428 An example of a *recursive* type and its use:
3429
3430 ```
3431 enum List<T> {
3432     Nil,
3433     Cons(T, Box<List<T>>)
3434 }
3435
3436 let a: List<i32> = List::Cons(7, Box::new(List::Cons(13, Box::new(List::Nil))));
3437 ```
3438
3439 ### Pointer types
3440
3441 All pointers in Rust are explicit first-class values. They can be copied,
3442 stored into data structs, and returned from functions. There are two
3443 varieties of pointer in Rust:
3444
3445 * References (`&`)
3446   : These point to memory _owned by some other value_.
3447     A reference type is written `&type`,
3448     or `&'a type` when you need to specify an explicit lifetime.
3449     Copying a reference is a "shallow" operation:
3450     it involves only copying the pointer itself.
3451     Releasing a reference has no effect on the value it points to,
3452     but a reference of a temporary value will keep it alive during the scope
3453     of the reference itself.
3454
3455 * Raw pointers (`*`)
3456   : Raw pointers are pointers without safety or liveness guarantees.
3457     Raw pointers are written as `*const T` or `*mut T`,
3458     for example `*const i32` means a raw pointer to a 32-bit integer.
3459     Copying or dropping a raw pointer has no effect on the lifecycle of any
3460     other value. Dereferencing a raw pointer or converting it to any other
3461     pointer type is an [`unsafe` operation](#unsafe-functions).
3462     Raw pointers are generally discouraged in Rust code;
3463     they exist to support interoperability with foreign code,
3464     and writing performance-critical or low-level functions.
3465
3466 The standard library contains additional 'smart pointer' types beyond references
3467 and raw pointers.
3468
3469 ### Function types
3470
3471 The function type constructor `fn` forms new function types. A function type
3472 consists of a possibly-empty set of function-type modifiers (such as `unsafe`
3473 or `extern`), a sequence of input types and an output type.
3474
3475 An example of a `fn` type:
3476
3477 ```
3478 fn add(x: i32, y: i32) -> i32 {
3479     return x + y;
3480 }
3481
3482 let mut x = add(5,7);
3483
3484 type Binop = fn(i32, i32) -> i32;
3485 let bo: Binop = add;
3486 x = bo(5,7);
3487 ```
3488
3489 #### Function types for specific items
3490
3491 Internal to the compiler, there are also function types that are specific to a particular
3492 function item. In the following snippet, for example, the internal types of the functions
3493 `foo` and `bar` are different, despite the fact that they have the same signature:
3494
3495 ```
3496 fn foo() { }
3497 fn bar() { }
3498 ```
3499
3500 The types of `foo` and `bar` can both be implicitly coerced to the fn
3501 pointer type `fn()`. There is currently no syntax for unique fn types,
3502 though the compiler will emit a type like `fn() {foo}` in error
3503 messages to indicate "the unique fn type for the function `foo`".
3504
3505 ### Closure types
3506
3507 A [lambda expression](#lambda-expressions) produces a closure value with
3508 a unique, anonymous type that cannot be written out.
3509
3510 Depending on the requirements of the closure, its type implements one or
3511 more of the closure traits:
3512
3513 * `FnOnce`
3514   : The closure can be called once. A closure called as `FnOnce`
3515     can move out values from its environment.
3516
3517 * `FnMut`
3518   : The closure can be called multiple times as mutable. A closure called as
3519     `FnMut` can mutate values from its environment. `FnMut` inherits from
3520     `FnOnce` (i.e. anything implementing `FnMut` also implements `FnOnce`).
3521
3522 * `Fn`
3523   : The closure can be called multiple times through a shared reference.
3524     A closure called as `Fn` can neither move out from nor mutate values
3525     from its environment. `Fn` inherits from `FnMut`, which itself
3526     inherits from `FnOnce`.
3527
3528
3529 ### Trait objects
3530
3531 In Rust, a type like `&SomeTrait` or `Box<SomeTrait>` is called a _trait object_.
3532 Each instance of a trait object includes:
3533
3534  - a pointer to an instance of a type `T` that implements `SomeTrait`
3535  - a _virtual method table_, often just called a _vtable_, which contains, for
3536    each method of `SomeTrait` that `T` implements, a pointer to `T`'s
3537    implementation (i.e. a function pointer).
3538
3539 The purpose of trait objects is to permit "late binding" of methods. A call to
3540 a method on a trait object is only resolved to a vtable entry at compile time.
3541 The actual implementation for each vtable entry can vary on an object-by-object
3542 basis.
3543
3544 Note that for a trait object to be instantiated, the trait must be
3545 _object-safe_. Object safety rules are defined in [RFC 255].
3546
3547 [RFC 255]: https://github.com/rust-lang/rfcs/blob/master/text/0255-object-safety.md
3548
3549 Given a pointer-typed expression `E` of type `&T` or `Box<T>`, where `T`
3550 implements trait `R`, casting `E` to the corresponding pointer type `&R` or
3551 `Box<R>` results in a value of the _trait object_ `R`. This result is
3552 represented as a pair of pointers: the vtable pointer for the `T`
3553 implementation of `R`, and the pointer value of `E`.
3554
3555 An example of a trait object:
3556
3557 ```
3558 trait Printable {
3559     fn stringify(&self) -> String;
3560 }
3561
3562 impl Printable for i32 {
3563     fn stringify(&self) -> String { self.to_string() }
3564 }
3565
3566 fn print(a: Box<Printable>) {
3567     println!("{}", a.stringify());
3568 }
3569
3570 fn main() {
3571     print(Box::new(10) as Box<Printable>);
3572 }
3573 ```
3574
3575 In this example, the trait `Printable` occurs as a trait object in both the
3576 type signature of `print`, and the cast expression in `main`.
3577
3578 ### Type parameters
3579
3580 Within the body of an item that has type parameter declarations, the names of
3581 its type parameters are types:
3582
3583 ```ignore
3584 fn to_vec<A: Clone>(xs: &[A]) -> Vec<A> {
3585     if xs.is_empty() {
3586         return vec![];
3587     }
3588     let first: A = xs[0].clone();
3589     let mut rest: Vec<A> = to_vec(&xs[1..]);
3590     rest.insert(0, first);
3591     rest
3592 }
3593 ```
3594
3595 Here, `first` has type `A`, referring to `to_vec`'s `A` type parameter; and `rest`
3596 has type `Vec<A>`, a vector with element type `A`.
3597
3598 ### Self types
3599
3600 The special type `Self` has a meaning within traits and impls. In a trait definition, it refers
3601 to an implicit type parameter representing the "implementing" type. In an impl,
3602 it is an alias for the implementing type. For example, in:
3603
3604 ```
3605 trait Printable {
3606     fn make_string(&self) -> String;
3607 }
3608
3609 impl Printable for String {
3610     fn make_string(&self) -> String {
3611         (*self).clone()
3612     }
3613 }
3614 ```
3615
3616 The notation `&self` is a shorthand for `self: &Self`. In this case,
3617 in the impl, `Self` refers to the value of type `String` that is the
3618 receiver for a call to the method `make_string`.
3619
3620 ## Subtyping
3621
3622 Subtyping is implicit and can occur at any stage in type checking or
3623 inference. Subtyping in Rust is very restricted and occurs only due to
3624 variance with respect to lifetimes and between types with higher ranked
3625 lifetimes. If we were to erase lifetimes from types, then the only subtyping
3626 would be due to type equality.
3627
3628 Consider the following example: string literals always have `'static`
3629 lifetime. Nevertheless, we can assign `s` to `t`:
3630
3631 ```
3632 fn bar<'a>() {
3633     let s: &'static str = "hi";
3634     let t: &'a str = s;
3635 }
3636 ```
3637 Since `'static` "lives longer" than `'a`, `&'static str` is a subtype of
3638 `&'a str`.
3639
3640 ## Type coercions
3641
3642 Coercions are defined in [RFC401]. A coercion is implicit and has no syntax.
3643
3644 [RFC401]: https://github.com/rust-lang/rfcs/blob/master/text/0401-coercions.md
3645
3646 ### Coercion sites
3647
3648 A coercion can only occur at certain coercion sites in a program; these are
3649 typically places where the desired type is explicit or can be derived by
3650 propagation from explicit types (without type inference). Possible coercion
3651 sites are:
3652
3653 * `let` statements where an explicit type is given.
3654
3655    For example, `128` is coerced to have type `i8` in the following:
3656
3657    ```rust
3658    let _: i8 = 128;
3659    ```
3660
3661 * `static` and `const` statements (similar to `let` statements).
3662
3663 * Arguments for function calls
3664
3665   The value being coerced is the actual parameter, and it is coerced to
3666   the type of the formal parameter.
3667
3668   For example, `128` is coerced to have type `i8` in the following:
3669
3670   ```rust
3671   fn bar(_: i8) { }
3672
3673   fn main() {
3674       bar(128);
3675   }
3676   ```
3677
3678 * Instantiations of struct or variant fields
3679
3680   For example, `128` is coerced to have type `i8` in the following:
3681
3682   ```rust
3683   struct Foo { x: i8 }
3684
3685   fn main() {
3686       Foo { x: 128 };
3687   }
3688   ```
3689
3690 * Function results, either the final line of a block if it is not
3691   semicolon-terminated or any expression in a `return` statement
3692
3693   For example, `128` is coerced to have type `i8` in the following:
3694
3695   ```rust
3696   fn foo() -> i8 {
3697       128
3698   }
3699   ```
3700
3701 If the expression in one of these coercion sites is a coercion-propagating
3702 expression, then the relevant sub-expressions in that expression are also
3703 coercion sites. Propagation recurses from these new coercion sites.
3704 Propagating expressions and their relevant sub-expressions are:
3705
3706 * Array literals, where the array has type `[U; n]`. Each sub-expression in
3707 the array literal is a coercion site for coercion to type `U`.
3708
3709 * Array literals with repeating syntax, where the array has type `[U; n]`. The
3710 repeated sub-expression is a coercion site for coercion to type `U`.
3711
3712 * Tuples, where a tuple is a coercion site to type `(U_0, U_1, ..., U_n)`.
3713 Each sub-expression is a coercion site to the respective type, e.g. the
3714 zeroth sub-expression is a coercion site to type `U_0`.
3715
3716 * Parenthesized sub-expressions (`(e)`): if the expression has type `U`, then
3717 the sub-expression is a coercion site to `U`.
3718
3719 * Blocks: if a block has type `U`, then the last expression in the block (if
3720 it is not semicolon-terminated) is a coercion site to `U`. This includes
3721 blocks which are part of control flow statements, such as `if`/`else`, if
3722 the block has a known type.
3723
3724 ### Coercion types
3725
3726 Coercion is allowed between the following types:
3727
3728 * `T` to `U` if `T` is a subtype of `U` (*reflexive case*)
3729
3730 * `T_1` to `T_3` where `T_1` coerces to `T_2` and `T_2` coerces to `T_3`
3731 (*transitive case*)
3732
3733     Note that this is not fully supported yet
3734
3735 * `&mut T` to `&T`
3736
3737 * `*mut T` to `*const T`
3738
3739 * `&T` to `*const T`
3740
3741 * `&mut T` to `*mut T`
3742
3743 * `&T` to `&U` if `T` implements `Deref<Target = U>`. For example:
3744
3745   ```rust
3746   use std::ops::Deref;
3747
3748   struct CharContainer {
3749       value: char
3750   }
3751
3752   impl Deref for CharContainer {
3753       type Target = char;
3754
3755       fn deref<'a>(&'a self) -> &'a char {
3756           &self.value
3757       }
3758   }
3759
3760   fn foo(arg: &char) {}
3761
3762   fn main() {
3763       let x = &mut CharContainer { value: 'y' };
3764       foo(x); //&mut CharContainer is coerced to &char.
3765   }
3766   ```
3767
3768 * `&mut T` to `&mut U` if `T` implements `DerefMut<Target = U>`.
3769
3770 * TyCtor(`T`) to TyCtor(coerce_inner(`T`)), where TyCtor(`T`) is one of
3771     - `&T`
3772     - `&mut T`
3773     - `*const T`
3774     - `*mut T`
3775     - `Box<T>`
3776
3777     and where
3778     - coerce_inner(`[T, ..n]`) = `[T]`
3779     - coerce_inner(`T`) = `U` where `T` is a concrete type which implements the
3780     trait `U`.
3781
3782     In the future, coerce_inner will be recursively extended to tuples and
3783     structs. In addition, coercions from sub-traits to super-traits will be
3784     added. See [RFC401] for more details.
3785
3786 # Special traits
3787
3788 Several traits define special evaluation behavior.
3789
3790 ## The `Copy` trait
3791
3792 The `Copy` trait changes the semantics of a type implementing it. Values whose
3793 type implements `Copy` are copied rather than moved upon assignment.
3794
3795 ## The `Sized` trait
3796
3797 The `Sized` trait indicates that the size of this type is known at compile-time.
3798
3799 ## The `Drop` trait
3800
3801 The `Drop` trait provides a destructor, to be run whenever a value of this type
3802 is to be destroyed.
3803
3804 ## The `Deref` trait
3805
3806 The `Deref<Target = U>` trait allows a type to implicitly implement all the methods
3807 of the type `U`. When attempting to resolve a method call, the compiler will search
3808 the top-level type for the implementation of the called method. If no such method is
3809 found, `.deref()` is called and the compiler continues to search for the method
3810 implementation in the returned type `U`.
3811
3812 # Memory model
3813
3814 A Rust program's memory consists of a static set of *items* and a *heap*.
3815 Immutable portions of the heap may be safely shared between threads, mutable
3816 portions may not be safely shared, but several mechanisms for effectively-safe
3817 sharing of mutable values, built on unsafe code but enforcing a safe locking
3818 discipline, exist in the standard library.
3819
3820 Allocations in the stack consist of *variables*, and allocations in the heap
3821 consist of *boxes*.
3822
3823 ### Memory allocation and lifetime
3824
3825 The _items_ of a program are those functions, modules and types that have their
3826 value calculated at compile-time and stored uniquely in the memory image of the
3827 rust process. Items are neither dynamically allocated nor freed.
3828
3829 The _heap_ is a general term that describes boxes.  The lifetime of an
3830 allocation in the heap depends on the lifetime of the box values pointing to
3831 it. Since box values may themselves be passed in and out of frames, or stored
3832 in the heap, heap allocations may outlive the frame they are allocated within.
3833
3834 ### Memory ownership
3835
3836 When a stack frame is exited, its local allocations are all released, and its
3837 references to boxes are dropped.
3838
3839 ### Variables
3840
3841 A _variable_ is a component of a stack frame, either a named function parameter,
3842 an anonymous [temporary](#lvalues-rvalues-and-temporaries), or a named local
3843 variable.
3844
3845 A _local variable_ (or *stack-local* allocation) holds a value directly,
3846 allocated within the stack's memory. The value is a part of the stack frame.
3847
3848 Local variables are immutable unless declared otherwise like: `let mut x = ...`.
3849
3850 Function parameters are immutable unless declared with `mut`. The `mut` keyword
3851 applies only to the following parameter (so `|mut x, y|` and `fn f(mut x:
3852 Box<i32>, y: Box<i32>)` declare one mutable variable `x` and one immutable
3853 variable `y`).
3854
3855 Methods that take either `self` or `Box<Self>` can optionally place them in a
3856 mutable variable by prefixing them with `mut` (similar to regular arguments):
3857
3858 ```
3859 trait Changer {
3860     fn change(mut self) -> Self;
3861     fn modify(mut self: Box<Self>) -> Box<Self>;
3862 }
3863 ```
3864
3865 Local variables are not initialized when allocated; the entire frame worth of
3866 local variables are allocated at once, on frame-entry, in an uninitialized
3867 state. Subsequent statements within a function may or may not initialize the
3868 local variables. Local variables can be used only after they have been
3869 initialized; this is enforced by the compiler.
3870
3871 # Linkage
3872
3873 The Rust compiler supports various methods to link crates together both
3874 statically and dynamically. This section will explore the various methods to
3875 link Rust crates together, and more information about native libraries can be
3876 found in the [FFI section of the book][ffi].
3877
3878 In one session of compilation, the compiler can generate multiple artifacts
3879 through the usage of either command line flags or the `crate_type` attribute.
3880 If one or more command line flags are specified, all `crate_type` attributes will
3881 be ignored in favor of only building the artifacts specified by command line.
3882
3883 * `--crate-type=bin`, `#[crate_type = "bin"]` - A runnable executable will be
3884   produced. This requires that there is a `main` function in the crate which
3885   will be run when the program begins executing. This will link in all Rust and
3886   native dependencies, producing a distributable binary.
3887
3888 * `--crate-type=lib`, `#[crate_type = "lib"]` - A Rust library will be produced.
3889   This is an ambiguous concept as to what exactly is produced because a library
3890   can manifest itself in several forms. The purpose of this generic `lib` option
3891   is to generate the "compiler recommended" style of library. The output library
3892   will always be usable by rustc, but the actual type of library may change from
3893   time-to-time. The remaining output types are all different flavors of
3894   libraries, and the `lib` type can be seen as an alias for one of them (but the
3895   actual one is compiler-defined).
3896
3897 * `--crate-type=dylib`, `#[crate_type = "dylib"]` - A dynamic Rust library will
3898   be produced. This is different from the `lib` output type in that this forces
3899   dynamic library generation. The resulting dynamic library can be used as a
3900   dependency for other libraries and/or executables. This output type will
3901   create `*.so` files on linux, `*.dylib` files on osx, and `*.dll` files on
3902   windows.
3903
3904 * `--crate-type=staticlib`, `#[crate_type = "staticlib"]` - A static system
3905   library will be produced. This is different from other library outputs in that
3906   the Rust compiler will never attempt to link to `staticlib` outputs. The
3907   purpose of this output type is to create a static library containing all of
3908   the local crate's code along with all upstream dependencies. The static
3909   library is actually a `*.a` archive on linux and osx and a `*.lib` file on
3910   windows. This format is recommended for use in situations such as linking
3911   Rust code into an existing non-Rust application because it will not have
3912   dynamic dependencies on other Rust code.
3913
3914 * `--crate-type=rlib`, `#[crate_type = "rlib"]` - A "Rust library" file will be
3915   produced. This is used as an intermediate artifact and can be thought of as a
3916   "static Rust library". These `rlib` files, unlike `staticlib` files, are
3917   interpreted by the Rust compiler in future linkage. This essentially means
3918   that `rustc` will look for metadata in `rlib` files like it looks for metadata
3919   in dynamic libraries. This form of output is used to produce statically linked
3920   executables as well as `staticlib` outputs.
3921
3922 Note that these outputs are stackable in the sense that if multiple are
3923 specified, then the compiler will produce each form of output at once without
3924 having to recompile. However, this only applies for outputs specified by the
3925 same method. If only `crate_type` attributes are specified, then they will all
3926 be built, but if one or more `--crate-type` command line flags are specified,
3927 then only those outputs will be built.
3928
3929 With all these different kinds of outputs, if crate A depends on crate B, then
3930 the compiler could find B in various different forms throughout the system. The
3931 only forms looked for by the compiler, however, are the `rlib` format and the
3932 dynamic library format. With these two options for a dependent library, the
3933 compiler must at some point make a choice between these two formats. With this
3934 in mind, the compiler follows these rules when determining what format of
3935 dependencies will be used:
3936
3937 1. If a static library is being produced, all upstream dependencies are
3938    required to be available in `rlib` formats. This requirement stems from the
3939    reason that a dynamic library cannot be converted into a static format.
3940
3941    Note that it is impossible to link in native dynamic dependencies to a static
3942    library, and in this case warnings will be printed about all unlinked native
3943    dynamic dependencies.
3944
3945 2. If an `rlib` file is being produced, then there are no restrictions on what
3946    format the upstream dependencies are available in. It is simply required that
3947    all upstream dependencies be available for reading metadata from.
3948
3949    The reason for this is that `rlib` files do not contain any of their upstream
3950    dependencies. It wouldn't be very efficient for all `rlib` files to contain a
3951    copy of `libstd.rlib`!
3952
3953 3. If an executable is being produced and the `-C prefer-dynamic` flag is not
3954    specified, then dependencies are first attempted to be found in the `rlib`
3955    format. If some dependencies are not available in an rlib format, then
3956    dynamic linking is attempted (see below).
3957
3958 4. If a dynamic library or an executable that is being dynamically linked is
3959    being produced, then the compiler will attempt to reconcile the available
3960    dependencies in either the rlib or dylib format to create a final product.
3961
3962    A major goal of the compiler is to ensure that a library never appears more
3963    than once in any artifact. For example, if dynamic libraries B and C were
3964    each statically linked to library A, then a crate could not link to B and C
3965    together because there would be two copies of A. The compiler allows mixing
3966    the rlib and dylib formats, but this restriction must be satisfied.
3967
3968    The compiler currently implements no method of hinting what format a library
3969    should be linked with. When dynamically linking, the compiler will attempt to
3970    maximize dynamic dependencies while still allowing some dependencies to be
3971    linked in via an rlib.
3972
3973    For most situations, having all libraries available as a dylib is recommended
3974    if dynamically linking. For other situations, the compiler will emit a
3975    warning if it is unable to determine which formats to link each library with.
3976
3977 In general, `--crate-type=bin` or `--crate-type=lib` should be sufficient for
3978 all compilation needs, and the other options are just available if more
3979 fine-grained control is desired over the output format of a Rust crate.
3980
3981 # Unsafety
3982
3983 Unsafe operations are those that potentially violate the memory-safety
3984 guarantees of Rust's static semantics.
3985
3986 The following language level features cannot be used in the safe subset of
3987 Rust:
3988
3989 - Dereferencing a [raw pointer](#pointer-types).
3990 - Reading or writing a [mutable static variable](#mutable-statics).
3991 - Calling an unsafe function (including an intrinsic or foreign function).
3992
3993 ## Unsafe functions
3994
3995 Unsafe functions are functions that are not safe in all contexts and/or for all
3996 possible inputs. Such a function must be prefixed with the keyword `unsafe` and
3997 can only be called from an `unsafe` block or another `unsafe` function.
3998
3999 ## Unsafe blocks
4000
4001 A block of code can be prefixed with the `unsafe` keyword, to permit calling
4002 `unsafe` functions or dereferencing raw pointers within a safe function.
4003
4004 When a programmer has sufficient conviction that a sequence of potentially
4005 unsafe operations is actually safe, they can encapsulate that sequence (taken
4006 as a whole) within an `unsafe` block. The compiler will consider uses of such
4007 code safe, in the surrounding context.
4008
4009 Unsafe blocks are used to wrap foreign libraries, make direct use of hardware
4010 or implement features not directly present in the language. For example, Rust
4011 provides the language features necessary to implement memory-safe concurrency
4012 in the language but the implementation of threads and message passing is in the
4013 standard library.
4014
4015 Rust's type system is a conservative approximation of the dynamic safety
4016 requirements, so in some cases there is a performance cost to using safe code.
4017 For example, a doubly-linked list is not a tree structure and can only be
4018 represented with reference-counted pointers in safe code. By using `unsafe`
4019 blocks to represent the reverse links as raw pointers, it can be implemented
4020 with only boxes.
4021
4022 ## Behavior considered undefined
4023
4024 The following is a list of behavior which is forbidden in all Rust code,
4025 including within `unsafe` blocks and `unsafe` functions. Type checking provides
4026 the guarantee that these issues are never caused by safe code.
4027
4028 * Data races
4029 * Dereferencing a null/dangling raw pointer
4030 * Reads of [undef](http://llvm.org/docs/LangRef.html#undefined-values)
4031   (uninitialized) memory
4032 * Breaking the [pointer aliasing
4033   rules](http://llvm.org/docs/LangRef.html#pointer-aliasing-rules)
4034   with raw pointers (a subset of the rules used by C)
4035 * `&mut` and `&` follow LLVM’s scoped [noalias] model, except if the `&T`
4036   contains an `UnsafeCell<U>`. Unsafe code must not violate these aliasing
4037   guarantees.
4038 * Mutating non-mutable data (that is, data reached through a shared reference or
4039   data owned by a `let` binding), unless that data is contained within an `UnsafeCell<U>`.
4040 * Invoking undefined behavior via compiler intrinsics:
4041   * Indexing outside of the bounds of an object with `std::ptr::offset`
4042     (`offset` intrinsic), with
4043     the exception of one byte past the end which is permitted.
4044   * Using `std::ptr::copy_nonoverlapping_memory` (`memcpy32`/`memcpy64`
4045     intrinsics) on overlapping buffers
4046 * Invalid values in primitive types, even in private fields/locals:
4047   * Dangling/null references or boxes
4048   * A value other than `false` (0) or `true` (1) in a `bool`
4049   * A discriminant in an `enum` not included in the type definition
4050   * A value in a `char` which is a surrogate or above `char::MAX`
4051   * Non-UTF-8 byte sequences in a `str`
4052 * Unwinding into Rust from foreign code or unwinding from Rust into foreign
4053   code. Rust's failure system is not compatible with exception handling in
4054   other languages. Unwinding must be caught and handled at FFI boundaries.
4055
4056 [noalias]: http://llvm.org/docs/LangRef.html#noalias
4057
4058 ## Behavior not considered unsafe
4059
4060 This is a list of behavior not considered *unsafe* in Rust terms, but that may
4061 be undesired.
4062
4063 * Deadlocks
4064 * Leaks of memory and other resources
4065 * Exiting without calling destructors
4066 * Integer overflow
4067   - Overflow is considered "unexpected" behavior and is always user-error,
4068     unless the `wrapping` primitives are used. In non-optimized builds, the compiler
4069     will insert debug checks that panic on overflow, but in optimized builds overflow
4070     instead results in wrapped values. See [RFC 560] for the rationale and more details.
4071
4072 [RFC 560]: https://github.com/rust-lang/rfcs/blob/master/text/0560-integer-overflow.md
4073
4074 # Appendix: Influences
4075
4076 Rust is not a particularly original language, with design elements coming from
4077 a wide range of sources. Some of these are listed below (including elements
4078 that have since been removed):
4079
4080 * SML, OCaml: algebraic data types, pattern matching, type inference,
4081   semicolon statement separation
4082 * C++: references, RAII, smart pointers, move semantics, monomorphization,
4083   memory model
4084 * ML Kit, Cyclone: region based memory management
4085 * Haskell (GHC): typeclasses, type families
4086 * Newsqueak, Alef, Limbo: channels, concurrency
4087 * Erlang: message passing, thread failure, ~~linked thread failure~~,
4088   ~~lightweight concurrency~~
4089 * Swift: optional bindings
4090 * Scheme: hygienic macros
4091 * C#: attributes
4092 * Ruby: ~~block syntax~~
4093 * NIL, Hermes: ~~typestate~~
4094 * [Unicode Annex #31](http://www.unicode.org/reports/tr31/): identifier and
4095   pattern syntax
4096
4097 [ffi]: book/ffi.html
4098 [plugin]: book/compiler-plugins.html