Ident {{ title }} and {{ "user" }}{{ b"user" }}{{ b'u' }}{{ 'u' }}{{ 10 }} Escaped \{{ title }} With > and < inside {{ "<" }}{{ ">" }} Array {{ [a, b] }} Binary {{ a + b }} Call {{ a(b, c) }} Cast {{ a as i32 }} Field {{ a.b }}{{ a.0 }}{{ a.b.c }} Index {{ a[b] }} Method Call {{ x.y::(a, b) }} Paren {{ (a + b) }} Range {{ a..b }} Repeat {{ [a; b] }} Struct {{ A { a, b: b, ..c } }} Tuple {{ (a, b) }} Type {{ a: i32 }} Unary {{ !a }} Reference {{ &a }}