Enum pr47::syntax::expr::ConcreteExpr[][src]

pub enum ConcreteExpr<'a> {
    LiteralExpr(ConcreteLiteralExpr<'a>),
    IdRefExpr(Identifier<'a>),
    UnaryExpr(ConcreteUnaryExpr<'a>),
    BinaryExpr(ConcreteBinaryExpr<'a>),
    FuncCallExpr(ConcreteFuncCallExpr<'a>),
    SubscriptExpr(ConcreteSubscriptExpr<'a>),
    FieldRefExpr(ConcreteFieldRefExpr<'a>),
    AsExpr(ConcreteAsExpr<'a>),
    AwaitExpr(ConcreteAwaitExpr<'a>),
    ParenthesizedExpr(ConcreteParenthesizedExpr<'a>),
}

Variants

LiteralExpr(ConcreteLiteralExpr<'a>)

Tuple Fields of LiteralExpr

0: ConcreteLiteralExpr<'a>
IdRefExpr(Identifier<'a>)

Tuple Fields of IdRefExpr

0: Identifier<'a>
UnaryExpr(ConcreteUnaryExpr<'a>)

Tuple Fields of UnaryExpr

0: ConcreteUnaryExpr<'a>
BinaryExpr(ConcreteBinaryExpr<'a>)

Tuple Fields of BinaryExpr

0: ConcreteBinaryExpr<'a>
FuncCallExpr(ConcreteFuncCallExpr<'a>)

Tuple Fields of FuncCallExpr

0: ConcreteFuncCallExpr<'a>
SubscriptExpr(ConcreteSubscriptExpr<'a>)

Tuple Fields of SubscriptExpr

0: ConcreteSubscriptExpr<'a>
FieldRefExpr(ConcreteFieldRefExpr<'a>)

Tuple Fields of FieldRefExpr

0: ConcreteFieldRefExpr<'a>
AsExpr(ConcreteAsExpr<'a>)

Tuple Fields of AsExpr

0: ConcreteAsExpr<'a>
AwaitExpr(ConcreteAwaitExpr<'a>)

Tuple Fields of AwaitExpr

0: ConcreteAwaitExpr<'a>
ParenthesizedExpr(ConcreteParenthesizedExpr<'a>)

Tuple Fields of ParenthesizedExpr

0: ConcreteParenthesizedExpr<'a>

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

Performs the conversion.

Performs the conversion.

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.