Enum ra_ap_hir_expand::ExpandTo[][src]

pub enum ExpandTo {
    Statements,
    Items,
    Pattern,
    Type,
    Expr,
}
Expand description

In Rust, macros expand token trees to token trees. When we want to turn a token tree into an AST node, we need to figure out what kind of AST node we want: something like foo can be a type, an expression, or a pattern.

Naively, one would think that “what this expands to” is a property of a particular macro: macro m1 returns an item, while macro m2 returns an expression, etc. That’s not the case – macros are polymorphic in the result, and can expand to any type of the AST node.

What defines the actual AST node is the syntactic context of the macro invocation. As a contrived example, in let T![*] = T![*]; the first T expands to a pattern, while the second one expands to an expression.

ExpandTo captures this bit of information about a particular macro call site.

Variants

Statements

Items

Pattern

Type

Expr

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more