[][src]Enum syntax::ast::ExprKind

pub enum ExprKind {
    Box(P<Expr>),
    Array(Vec<P<Expr>>),
    Call(P<Expr>, Vec<P<Expr>>),
    MethodCall(PathSegmentVec<P<Expr>>),
    Tup(Vec<P<Expr>>),
    Binary(BinOpP<Expr>, P<Expr>),
    Unary(UnOpP<Expr>),
    Lit(Lit),
    Cast(P<Expr>, P<Ty>),
    Type(P<Expr>, P<Ty>),
    If(P<Expr>, P<Block>, Option<P<Expr>>),
    IfLet(Vec<P<Pat>>, P<Expr>, P<Block>, Option<P<Expr>>),
    While(P<Expr>, P<Block>, Option<Label>),
    WhileLet(Vec<P<Pat>>, P<Expr>, P<Block>, Option<Label>),
    ForLoop(P<Pat>, P<Expr>, P<Block>, Option<Label>),
    Loop(P<Block>, Option<Label>),
    Match(P<Expr>, Vec<Arm>),
    Closure(CaptureByIsAsyncMovabilityP<FnDecl>, P<Expr>, Span),
    Block(P<Block>, Option<Label>),
    Async(CaptureByNodeIdP<Block>),
    Await(AwaitOriginP<Expr>),
    TryBlock(P<Block>),
    Assign(P<Expr>, P<Expr>),
    AssignOp(BinOpP<Expr>, P<Expr>),
    Field(P<Expr>, Ident),
    Index(P<Expr>, P<Expr>),
    Range(Option<P<Expr>>, Option<P<Expr>>, RangeLimits),
    Path(Option<QSelf>, Path),
    AddrOf(MutabilityP<Expr>),
    Break(Option<Label>, Option<P<Expr>>),
    Continue(Option<Label>),
    Ret(Option<P<Expr>>),
    InlineAsm(P<InlineAsm>),
    Mac(Mac),
    Struct(PathVec<Field>, Option<P<Expr>>),
    Repeat(P<Expr>, AnonConst),
    Paren(P<Expr>),
    Try(P<Expr>),
    Yield(Option<P<Expr>>),
    Err,
}

Variants

Box(P<Expr>)

A box x expression.

Array(Vec<P<Expr>>)

An array ([a, b, c, d])

Call(P<Expr>, Vec<P<Expr>>)

A function call

The first field resolves to the function itself, 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.

MethodCall(PathSegmentVec<P<Expr>>)

A method call (x.foo::<'static, Bar, Baz>(a, b, c, d))

The PathSegment represents the method name and its generic arguments (within the angle brackets). The first element of the vector of an Expr 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]).

Tup(Vec<P<Expr>>)

A tuple (e.g., (a, b, c, d)).

Binary(BinOpP<Expr>, P<Expr>)

A binary operation (e.g., a + b, a * b).

Unary(UnOpP<Expr>)

A unary operation (e.g., !x, *x).

Lit(Lit)

A literal (e.g., 1, "foo").

Cast(P<Expr>, P<Ty>)

A cast (e.g., foo as f64).

Type(P<Expr>, P<Ty>)

A type ascription (e.g., 42: usize).

If(P<Expr>, P<Block>, Option<P<Expr>>)

An if block, with an optional else block.

if expr { block } else { expr }

IfLet(Vec<P<Pat>>, P<Expr>, P<Block>, Option<P<Expr>>)

An if let expression with an optional else block

if let pat = expr { block } else { expr }

This is desugared to a match expression.

While(P<Expr>, P<Block>, Option<Label>)

A while loop, with an optional label

'label: while expr { block }

WhileLet(Vec<P<Pat>>, P<Expr>, P<Block>, Option<Label>)

A while let loop, with an optional label.

'label: while let pat = expr { block }

This is desugared to a combination of loop and match expressions.

ForLoop(P<Pat>, P<Expr>, P<Block>, Option<Label>)

A for loop, with an optional label.

'label: for pat in expr { block }

This is desugared to a combination of loop and match expressions.

Loop(P<Block>, Option<Label>)

Conditionless loop (can be exited with break, continue, or return).

'label: loop { block }

Match(P<Expr>, Vec<Arm>)

A match block.

Closure(CaptureByIsAsyncMovabilityP<FnDecl>, P<Expr>, Span)

A closure (e.g., move |a, b, c| a + b + c).

The final span is the span of the argument block |...|.

Block(P<Block>, Option<Label>)

A block ('label: { ... }).

Async(CaptureByNodeIdP<Block>)

An async block (async move { ... }).

The NodeId is the NodeId for the closure that results from desugaring an async block, just like the NodeId field in the IsAsync enum. This is necessary in order to create a def for the closure which can be used as a parent of any child defs. Defs created during lowering cannot be made the parent of any other preexisting defs.

Await(AwaitOriginP<Expr>)

An await expression (my_future.await).

TryBlock(P<Block>)

A try block (try { ... }).

Assign(P<Expr>, P<Expr>)

An assignment (a = foo()).

AssignOp(BinOpP<Expr>, P<Expr>)

An assignment with an operator.

E.g., a += 1.

Field(P<Expr>, Ident)

Access of a named (e.g., obj.foo) or unnamed (e.g., obj.0) struct field.

Index(P<Expr>, P<Expr>)

An indexing operation (e.g., foo[2]).

Range(Option<P<Expr>>, Option<P<Expr>>, RangeLimits)

A range (e.g., 1..2, 1.., ..2, 1...2, 1..., ...2).

Path(Option<QSelf>, Path)

Variable reference, possibly containing :: and/or type parameters (e.g., foo::bar::<baz>).

Optionally "qualified" (e.g., <Vec<T> as SomeTrait>::SomeType).

AddrOf(MutabilityP<Expr>)

A referencing operation (&a or &mut a).

Break(Option<Label>, Option<P<Expr>>)

A break, with an optional label to break, and an optional expression.

Continue(Option<Label>)

A continue, with an optional label.

Ret(Option<P<Expr>>)

A return, with an optional value to be returned.

InlineAsm(P<InlineAsm>)

Output of the asm!() macro.

Mac(Mac)

A macro invocation; pre-expansion.

Struct(PathVec<Field>, Option<P<Expr>>)

A struct literal expression.

E.g., Foo {x: 1, y: 2}, or Foo {x: 1, .. base}, where base is the Option<Expr>.

Repeat(P<Expr>, AnonConst)

An array literal constructed from one repeated element.

E.g., [1; 5]. The expression is the element to be repeated; the constant is the number of times to repeat it.

Paren(P<Expr>)

No-op: used solely so we can pretty-print faithfully.

Try(P<Expr>)

A try expression (expr?).

Yield(Option<P<Expr>>)

A yield, with an optional value to be yielded.

Err

Placeholder for an expression that wasn't syntactically well formed in some way.

Trait Implementations

impl Clone for ExprKind[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ExprKind[src]

impl Encodable for ExprKind[src]

impl Decodable for ExprKind[src]

Auto Trait Implementations

impl !Send for ExprKind

impl !Sync for ExprKind

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<E> SpecializationError for E[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]