Rust 1.0.0-nightly
2b01a37ec

Grammar

1 Introduction

This document is the primary reference for the Rust programming language grammar. It provides only one kind of material:

This document does not serve as an introduction to the language. Background familiarity with the language is assumed. A separate guide is available to help acquire such background familiarity.

This document also does not serve as a reference to the standard library included in the language distribution. Those libraries are documented separately by extracting documentation attributes from their source code. Many of the features that one might expect to be language features are library features in Rust, so what you're looking for may be there, not here.

2 Notation

Rust's grammar is defined over Unicode codepoints, each conventionally denoted U+XXXX, for 4 or more hexadecimal digits X. Most of Rust's grammar is confined to the ASCII range of Unicode, and is described in this document by a dialect of Extended Backus-Naur Form (EBNF), specifically a dialect of EBNF supported by common automated LL(k) parsing tools such as llgen, rather than the dialect given in ISO 14977. The dialect can be defined self-referentially as follows:

grammar : rule + ;
rule    : nonterminal ':' productionrule ';' ;
productionrule : production [ '|' production ] * ;
production : term * ;
term : element repeats ;
element : LITERAL | IDENTIFIER | '[' productionrule ']' ;
repeats : [ '*' | '+' ] NUMBER ? | NUMBER ? | '?' ;

Where:

This EBNF dialect should hopefully be familiar to many readers.

2.1 Unicode productions

A few productions in Rust's grammar permit Unicode codepoints outside the ASCII range. We define these productions in terms of character properties specified in the Unicode standard, rather than in terms of ASCII-range codepoints. The section Special Unicode Productions lists these productions.

2.2 String table productions

Some rules in the grammar — notably unary operators, binary operators, and keywords — are given in a simplified form: as a listing of a table of unquoted, printable whitespace-separated strings. These cases form a subset of the rules regarding the token rule, and are assumed to be the result of a lexical-analysis phase feeding the parser, driven by a DFA, operating over the disjunction of all such string table entries.

When such a string enclosed in double-quotes (") occurs inside the grammar, it is an implicit reference to a single member of such a string table production. See tokens for more information.

3 Lexical structure

3.1 Input format

Rust input is interpreted as a sequence of Unicode codepoints encoded in UTF-8. Most Rust grammar rules are defined in terms of printable ASCII-range codepoints, but a small number are defined in terms of Unicode properties or explicit codepoint lists. 1

3.2 Special Unicode Productions

The following productions in the Rust grammar are defined in terms of Unicode properties: ident, non_null, non_star, non_eol, non_slash_or_star, non_single_quote and non_double_quote.

3.2.1 Identifiers

The ident production is any nonempty Unicode string of the following form:

that does not occur in the set of keywords.

Note: XID_start and XID_continue as character properties cover the character ranges used to form the more familiar C and Java language-family identifiers.

3.2.2 Delimiter-restricted productions

Some productions are defined by exclusion of particular Unicode characters:

3.3 Comments

comment : block_comment | line_comment ;
block_comment : "/*" block_comment_body * "*/" ;
block_comment_body : [block_comment | character] * ;
line_comment : "//" non_eol * ;

FIXME: add doc grammar?

3.4 Whitespace

whitespace_char : '\x20' | '\x09' | '\x0a' | '\x0d' ;
whitespace : [ whitespace_char | comment ] + ;

3.5 Tokens

simple_token : keyword | unop | binop ;
token : simple_token | ident | literal | symbol | whitespace token ;

3.5.1 Keywords

abstract alignof as become box
break const continue crate do
else enum extern false final
fn for if impl in
let loop match mod move
mut offsetof once override priv
proc pub pure ref return
sizeof static self struct super
true trait type typeof unsafe
unsized use virtual where while
yield

Each of these keywords has special meaning in its grammar, and all of them are excluded from the ident rule.

3.5.2 Literals

lit_suffix : ident;
literal : [ string_lit | char_lit | byte_string_lit | byte_lit | num_lit ] lit_suffix ?;

3.5.2.1 Character and string literals

char_lit : '\x27' char_body '\x27' ;
string_lit : '"' string_body * '"' | 'r' raw_string ;

char_body : non_single_quote
          | '\x5c' [ '\x27' | common_escape | unicode_escape ] ;

string_body : non_double_quote
            | '\x5c' [ '\x22' | common_escape | unicode_escape ] ;
raw_string : '"' raw_string_body '"' | '#' raw_string '#' ;

common_escape : '\x5c'
              | 'n' | 'r' | 't' | '0'
              | 'x' hex_digit 2
unicode_escape : 'u' '{' hex_digit+ 6 '}';

hex_digit : 'a' | 'b' | 'c' | 'd' | 'e' | 'f'
          | 'A' | 'B' | 'C' | 'D' | 'E' | 'F'
          | dec_digit ;
oct_digit : '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' ;
dec_digit : '0' | nonzero_dec ;
nonzero_dec: '1' | '2' | '3' | '4'
           | '5' | '6' | '7' | '8' | '9' ;

3.5.2.2 Byte and byte string literals

byte_lit : "b\x27" byte_body '\x27' ;
byte_string_lit : "b\x22" string_body * '\x22' | "br" raw_byte_string ;

byte_body : ascii_non_single_quote
          | '\x5c' [ '\x27' | common_escape ] ;

byte_string_body : ascii_non_double_quote
            | '\x5c' [ '\x22' | common_escape ] ;
raw_byte_string : '"' raw_byte_string_body '"' | '#' raw_byte_string '#' ;

3.5.2.3 Number literals

num_lit : nonzero_dec [ dec_digit | '_' ] * float_suffix ?
        | '0' [       [ dec_digit | '_' ] * float_suffix ?
              | 'b'   [ '1' | '0' | '_' ] +
              | 'o'   [ oct_digit | '_' ] +
              | 'x'   [ hex_digit | '_' ] +  ] ;

float_suffix : [ exponent | '.' dec_lit exponent ? ] ? ;

exponent : ['E' | 'e'] ['-' | '+' ] ? dec_lit ;
dec_lit : [ dec_digit | '_' ] + ;

3.5.2.4 Boolean literals

FIXME: write grammar

The two values of the boolean type are written true and false.

3.5.3 Symbols

symbol : "::" "->"
       | '#' | '[' | ']' | '(' | ')' | '{' | '}'
       | ',' | ';' ;

Symbols are a general class of printable token that play structural roles in a variety of grammar productions. They are catalogued here for completeness as the set of remaining miscellaneous printable tokens that do not otherwise appear as unary operators, binary operators, or keywords.

3.6 Paths

expr_path : [ "::" ] ident [ "::" expr_path_tail ] + ;
expr_path_tail : '<' type_expr [ ',' type_expr ] + '>'
               | expr_path ;

type_path : ident [ type_path_tail ] + ;
type_path_tail : '<' type_expr [ ',' type_expr ] + '>'
               | "::" type_path ;

4 Syntax extensions

4.1 Macros

expr_macro_rules : "macro_rules" '!' ident '(' macro_rule * ')' ;
macro_rule : '(' matcher * ')' "=>" '(' transcriber * ')' ';' ;
matcher : '(' matcher * ')' | '[' matcher * ']'
        | '{' matcher * '}' | '$' ident ':' ident
        | '$' '(' matcher * ')' sep_token? [ '*' | '+' ]
        | non_special_token ;
transcriber : '(' transcriber * ')' | '[' transcriber * ']'
            | '{' transcriber * '}' | '$' ident
            | '$' '(' transcriber * ')' sep_token? [ '*' | '+' ]
            | non_special_token ;

5 Crates and source files

FIXME: grammar? What production covers #![crate_id = "foo"] ?

6 Items and attributes

FIXME: grammar?

6.1 Items

item : mod_item | fn_item | type_item | struct_item | enum_item
     | static_item | trait_item | impl_item | extern_block ;

6.1.1 Type Parameters

FIXME: grammar?

6.1.2 Modules

mod_item : "mod" ident ( ';' | '{' mod '}' );
mod : [ view_item | item ] * ;

6.1.2.1 View items

view_item : extern_crate_decl | use_decl ;
6.1.2.1.1 Extern crate declarations
extern_crate_decl : "extern" "crate" crate_name
crate_name: ident | ( string_lit as ident )
6.1.2.1.2 Use declarations
use_decl : "pub" ? "use" [ path "as" ident
                          | path_glob ] ;

path_glob : ident [ "::" [ path_glob
                          | '*' ] ] ?
          | '{' path_item [ ',' path_item ] * '}' ;

path_item : ident | "mod" ;

6.1.3 Functions

FIXME: grammar?

6.1.3.1 Generic functions

FIXME: grammar?

6.1.3.2 Unsafety

FIXME: grammar?

6.1.3.2.1 Unsafe functions

FIXME: grammar?

6.1.3.2.2 Unsafe blocks

FIXME: grammar?

6.1.3.3 Diverging functions

FIXME: grammar?

6.1.4 Type definitions

FIXME: grammar?

6.1.5 Structures

FIXME: grammar?

6.1.6 Constant items

const_item : "const" ident ':' type '=' expr ';' ;

6.1.7 Static items

static_item : "static" ident ':' type '=' expr ';' ;

6.1.7.1 Mutable statics

FIXME: grammar?

6.1.8 Traits

FIXME: grammar?

6.1.9 Implementations

FIXME: grammar?

6.1.10 External blocks

extern_block_item : "extern" '{' extern_block '}' ;
extern_block : [ foreign_fn ] * ;

6.2 Visibility and Privacy

FIXME: grammar?

6.2.1 Re-exporting and Visibility

FIXME: grammar?

6.3 Attributes

attribute : "#!" ? '[' meta_item ']' ;
meta_item : ident [ '=' literal
                  | '(' meta_seq ')' ] ? ;
meta_seq : meta_item [ ',' meta_seq ] ? ;

7 Statements and expressions

7.1 Statements

FIXME: grammar?

7.1.1 Declaration statements

FIXME: grammar?

A declaration statement is one that introduces one or more names into the enclosing statement block. The declared names may denote new slots or new items.

7.1.1.1 Item declarations

FIXME: grammar?

An item declaration statement has a syntactic form identical to an item declaration within a module. Declaring an item — a function, enumeration, structure, type, static, trait, implementation or module — locally within a statement block is simply a way of restricting its scope to a narrow region containing all of its uses; it is otherwise identical in meaning to declaring the item outside the statement block.

7.1.1.2 Slot declarations

let_decl : "let" pat [':' type ] ? [ init ] ? ';' ;
init : [ '=' ] expr ;

7.1.2 Expression statements

FIXME: grammar?

7.2 Expressions

FIXME: grammar?

7.2.0.1 Lvalues, rvalues and temporaries

FIXME: grammar?

7.2.0.2 Moved and copied types

FIXME: Do we want to capture this in the grammar as different productions?

7.2.1 Literal expressions

FIXME: grammar?

7.2.2 Path expressions

FIXME: grammar?

7.2.3 Tuple expressions

FIXME: grammar?

7.2.4 Unit expressions

FIXME: grammar?

7.2.5 Structure expressions

struct_expr : expr_path '{' ident ':' expr
                      [ ',' ident ':' expr ] *
                      [ ".." expr ] '}' |
              expr_path '(' expr
                      [ ',' expr ] * ')' |
              expr_path ;

7.2.6 Block expressions

block_expr : '{' [ view_item ] *
                 [ stmt ';' | item ] *
                 [ expr ] '}' ;

7.2.7 Method-call expressions

method_call_expr : expr '.' ident paren_expr_list ;

7.2.8 Field expressions

field_expr : expr '.' ident ;

7.2.9 Array expressions

array_expr : '[' "mut" ? vec_elems? ']' ;

array_elems : [expr [',' expr]*] | [expr ',' ".." expr] ;

7.2.10 Index expressions

idx_expr : expr '[' expr ']' ;

7.2.11 Unary operator expressions

FIXME: grammar?

7.2.12 Binary operator expressions

binop_expr : expr binop expr ;

7.2.12.1 Arithmetic operators

FIXME: grammar?

7.2.12.2 Bitwise operators

FIXME: grammar?

7.2.12.3 Lazy boolean operators

FIXME: grammar?

7.2.12.4 Comparison operators

FIXME: grammar?

7.2.12.5 Type cast expressions

FIXME: grammar?

7.2.12.6 Assignment expressions

FIXME: grammar?

7.2.12.7 Compound assignment expressions

FIXME: grammar?

7.2.12.8 Operator precedence

The precedence of Rust binary operators is ordered as follows, going from strong to weak:

* / %
as
+ -
<< >>
&
^
|
< > <= >=
== !=
&&
||
=

Operators at the same precedence level are evaluated left-to-right. Unary operators have the same precedence level and it is stronger than any of the binary operators'.

7.2.13 Grouped expressions

paren_expr : '(' expr ')' ;

7.2.14 Call expressions

expr_list : [ expr [ ',' expr ]* ] ? ;
paren_expr_list : '(' expr_list ')' ;
call_expr : expr paren_expr_list ;

7.2.15 Lambda expressions

ident_list : [ ident [ ',' ident ]* ] ? ;
lambda_expr : '|' ident_list '|' expr ;

7.2.16 While loops

while_expr : "while" no_struct_literal_expr '{' block '}' ;

7.2.17 Infinite loops

loop_expr : [ lifetime ':' ] "loop" '{' block '}';

7.2.18 Break expressions

break_expr : "break" [ lifetime ];

7.2.19 Continue expressions

continue_expr : "continue" [ lifetime ];

7.2.20 For expressions

for_expr : "for" pat "in" no_struct_literal_expr '{' block '}' ;

7.2.21 If expressions

if_expr : "if" no_struct_literal_expr '{' block '}'
          else_tail ? ;

else_tail : "else" [ if_expr | if_let_expr
                   | '{' block '}' ] ;

7.2.22 Match expressions

match_expr : "match" no_struct_literal_expr '{' match_arm * '}' ;

match_arm : attribute * match_pat "=>" [ expr "," | '{' block '}' ] ;

match_pat : pat [ '|' pat ] * [ "if" expr ] ? ;

7.2.23 If let expressions

if_let_expr : "if" "let" pat '=' expr '{' block '}'
               else_tail ? ;
else_tail : "else" [ if_expr | if_let_expr | '{' block '}' ] ;

7.2.24 While let loops

while_let_expr : "while" "let" pat '=' expr '{' block '}' ;

7.2.25 Return expressions

return_expr : "return" expr ? ;

8 Type system

FIXME: is this entire chapter relevant here? Or should it all have been covered by some production already?

8.1 Types

8.1.1 Primitive types

FIXME: grammar?

8.1.1.1 Machine types

FIXME: grammar?

8.1.1.2 Machine-dependent integer types

FIXME: grammar?

8.1.2 Textual types

FIXME: grammar?

8.1.3 Tuple types

FIXME: grammar?

8.1.4 Array, and Slice types

FIXME: grammar?

8.1.5 Structure types

FIXME: grammar?

8.1.6 Enumerated types

FIXME: grammar?

8.1.7 Pointer types

FIXME: grammar?

8.1.8 Function types

FIXME: grammar?

8.1.9 Closure types

closure_type := [ 'unsafe' ] [ '<' lifetime-list '>' ] '|' arg-list '|'
                [ ':' bound-list ] [ '->' type ]
procedure_type := 'proc' [ '<' lifetime-list '>' ] '(' arg-list ')'
                  [ ':' bound-list ] [ '->' type ]
lifetime-list := lifetime | lifetime ',' lifetime-list
arg-list := ident ':' type | ident ':' type ',' arg-list
bound-list := bound | bound '+' bound-list
bound := path | lifetime

8.1.10 Object types

FIXME: grammar?

8.1.11 Type parameters

FIXME: grammar?

8.1.12 Self types

FIXME: grammar?

8.2 Type kinds

FIXME: this this probably not relevant to the grammar...

9 Memory and concurrency models

FIXME: is this entire chapter relevant here? Or should it all have been covered by some production already?

9.1 Memory model

9.1.1 Memory allocation and lifetime

9.1.2 Memory ownership

9.1.3 Memory slots

9.1.4 Boxes

9.2 Tasks

9.2.1 Communication between tasks

9.2.2 Task lifecycle


  1. Substitute definitions for the special Unicode productions are provided to the grammar verifier, restricted to ASCII range, when verifying the grammar in this document.