Enum rustc_hir::hir::ExprKind [−][src]
pub enum ExprKind<'hir> {
Show 33 variants
Box(&'hir Expr<'hir>),
ConstBlock(AnonConst),
Array(&'hir [Expr<'hir>]),
Call(&'hir Expr<'hir>, &'hir [Expr<'hir>]),
MethodCall(&'hir PathSegment<'hir>, Span, &'hir [Expr<'hir>], Span),
Tup(&'hir [Expr<'hir>]),
Binary(BinOp, &'hir Expr<'hir>, &'hir Expr<'hir>),
Unary(UnOp, &'hir Expr<'hir>),
Lit(Lit),
Cast(&'hir Expr<'hir>, &'hir Ty<'hir>),
Type(&'hir Expr<'hir>, &'hir Ty<'hir>),
DropTemps(&'hir Expr<'hir>),
Let(&'hir Pat<'hir>, &'hir Expr<'hir>, Span),
If(&'hir Expr<'hir>, &'hir Expr<'hir>, Option<&'hir Expr<'hir>>),
Loop(&'hir Block<'hir>, Option<Label>, LoopSource, Span),
Match(&'hir Expr<'hir>, &'hir [Arm<'hir>], MatchSource),
Closure(CaptureBy, &'hir FnDecl<'hir>, BodyId, Span, Option<Movability>),
Block(&'hir Block<'hir>, Option<Label>),
Assign(&'hir Expr<'hir>, &'hir Expr<'hir>, Span),
AssignOp(BinOp, &'hir Expr<'hir>, &'hir Expr<'hir>),
Field(&'hir Expr<'hir>, Ident),
Index(&'hir Expr<'hir>, &'hir Expr<'hir>),
Path(QPath<'hir>),
AddrOf(BorrowKind, Mutability, &'hir Expr<'hir>),
Break(Destination, Option<&'hir Expr<'hir>>),
Continue(Destination),
Ret(Option<&'hir Expr<'hir>>),
InlineAsm(&'hir InlineAsm<'hir>),
LlvmInlineAsm(&'hir LlvmInlineAsm<'hir>),
Struct(&'hir QPath<'hir>, &'hir [ExprField<'hir>], Option<&'hir Expr<'hir>>),
Repeat(&'hir Expr<'hir>, AnonConst),
Yield(&'hir Expr<'hir>, YieldSource),
Err,
}
Variants
Box(&'hir Expr<'hir>)
A box x
expression.
Tuple Fields of Box
0: &'hir Expr<'hir>
ConstBlock(AnonConst)
Allow anonymous constants from an inline const
block
Tuple Fields of ConstBlock
0: AnonConst
An array (e.g., [a, b, c, d]
).
A function call.
The first field resolves to the function itself (usually an ExprKind::Path
),
and the second field is the list of arguments.
This also represents calling the constructor of
tuple-like ADTs such as tuple structs and enum variants.
A method call (e.g., x.foo::<'static, Bar, Baz>(a, b, c, d)
).
The PathSegment
/Span
represent the method name and its generic arguments
(within the angle brackets).
The first element of the vector of Expr
s is the expression that evaluates
to the object on which the method is being called on (the receiver),
and the remaining elements are the rest of the arguments.
Thus, x.foo::<Bar, Baz>(a, b, c, d)
is represented as
ExprKind::MethodCall(PathSegment { foo, [Bar, Baz] }, [x, a, b, c, d])
.
The final Span
represents the span of the function and arguments
(e.g. foo::<Bar, Baz>(a, b, c, d)
in x.foo::<Bar, Baz>(a, b, c, d)
To resolve the called method to a DefId
, call type_dependent_def_id
with
the hir_id
of the MethodCall
node itself.
A tuple (e.g., (a, b, c, d)
).
A binary operation (e.g., a + b
, a * b
).
A unary operation (e.g., !x
, *x
).
Lit(Lit)
A literal (e.g., 1
, "foo"
).
Tuple Fields of Lit
0: Lit
A cast (e.g., foo as f64
).
A type reference (e.g., Foo
).
DropTemps(&'hir Expr<'hir>)
Wraps the expression in a terminating scope.
This makes it semantically equivalent to { let _t = expr; _t }
.
This construct only exists to tweak the drop order in HIR lowering.
An example of that is the desugaring of for
loops.
Tuple Fields of DropTemps
0: &'hir Expr<'hir>
A let $pat = $expr
expression.
These are not Local
and only occur as expressions.
The let Some(x) = foo()
in if let Some(x) = foo()
is an example of Let(..)
.
An if
block, with an optional else block.
I.e., if <expr> { <expr> } else { <expr> }
.
Loop(&'hir Block<'hir>, Option<Label>, LoopSource, Span)
A conditionless loop (can be exited with break
, continue
, or return
).
I.e., 'label: loop { <block> }
.
The Span
is the loop header (for x in y
/while let pat = expr
).
Tuple Fields of Loop
Match(&'hir Expr<'hir>, &'hir [Arm<'hir>], MatchSource)
A match
block, with a source that indicates whether or not it is
the result of a desugaring, and if so, which kind.
Tuple Fields of Match
A closure (e.g., move |a, b, c| {a + b + c}
).
The Span
is the argument block |...|
.
This may also be a generator literal or an async block
as indicated by the
Option<Movability>
.
A block (e.g., 'label: { ... }
).
An assignment (e.g., a = foo()
).
An assignment with an operator.
E.g., a += 1
.
Access of a named (e.g., obj.foo
) or unnamed (e.g., obj.0
) struct or tuple field.
An indexing operation (foo[2]
).
Path(QPath<'hir>)
Path to a definition, possibly containing lifetime or type parameters.
Tuple Fields of Path
0: QPath<'hir>
AddrOf(BorrowKind, Mutability, &'hir Expr<'hir>)
A referencing operation (i.e., &a
or &mut a
).
Tuple Fields of AddrOf
Break(Destination, Option<&'hir Expr<'hir>>)
A break
, with an optional label to break.
Tuple Fields of Break
0: Destination
1: Option<&'hir Expr<'hir>>
Continue(Destination)
A continue
, with an optional label.
Tuple Fields of Continue
0: Destination
A return
, with an optional value to be returned.
InlineAsm(&'hir InlineAsm<'hir>)
Inline assembly (from asm!
), with its outputs and inputs.
Tuple Fields of InlineAsm
0: &'hir InlineAsm<'hir>
LlvmInlineAsm(&'hir LlvmInlineAsm<'hir>)
Inline assembly (from llvm_asm!
), with its outputs and inputs.
Tuple Fields of LlvmInlineAsm
0: &'hir LlvmInlineAsm<'hir>
A struct or struct-like variant literal expression.
E.g., Foo {x: 1, y: 2}
, or Foo {x: 1, .. base}
,
where base
is the Option<Expr>
.
An array literal constructed from one repeated element.
E.g., [1; 5]
. The first expression is the element
to be repeated; the second is the number of times to repeat it.
Yield(&'hir Expr<'hir>, YieldSource)
A suspension point for generators (i.e., yield <expr>
).
Tuple Fields of Yield
0: &'hir Expr<'hir>
1: YieldSource
A placeholder for an expression that wasn’t syntactically well formed in some way.
Trait Implementations
Auto Trait Implementations
impl<'hir> !RefUnwindSafe for ExprKind<'hir>
impl<'hir> !UnwindSafe for ExprKind<'hir>
Blanket Implementations
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes
Size for each variant:
Box
: 15 bytesConstBlock
: 19 bytesArray
: 23 bytesCall
: 31 bytesMethodCall
: 47 bytesTup
: 23 bytesBinary
: 31 bytesUnary
: 15 bytesLit
: 39 bytesCast
: 23 bytesType
: 23 bytesDropTemps
: 15 bytesLet
: 31 bytesIf
: 31 bytesLoop
: 31 bytesMatch
: 31 bytesClosure
: 31 bytesBlock
: 23 bytesAssign
: 31 bytesAssignOp
: 31 bytesField
: 23 bytesIndex
: 23 bytesPath
: 31 bytesAddrOf
: 15 bytesBreak
: 39 bytesContinue
: 27 bytesRet
: 15 bytesInlineAsm
: 15 bytesLlvmInlineAsm
: 15 bytesStruct
: 39 bytesRepeat
: 31 bytesYield
: 23 bytesErr
: 0 bytes