pub enum AstFragment {
Show 17 variants OptExpr(Option<P<Expr>>), Expr(P<Expr>), Pat(P<Pat>), Ty(P<Ty>), Stmts(SmallVec<[Stmt; 1]>), Items(SmallVec<[P<Item>; 1]>), TraitItems(SmallVec<[P<AssocItem>; 1]>), ImplItems(SmallVec<[P<AssocItem>; 1]>), ForeignItems(SmallVec<[P<ForeignItem>; 1]>), Arms(SmallVec<[Arm; 1]>), ExprFields(SmallVec<[ExprField; 1]>), PatFields(SmallVec<[PatField; 1]>), GenericParams(SmallVec<[GenericParam; 1]>), Params(SmallVec<[Param; 1]>), FieldDefs(SmallVec<[FieldDef; 1]>), Variants(SmallVec<[Variant; 1]>), Crate(Crate),
}
Expand description

A fragment of AST that can be produced by a single macro expansion. Can also serve as an input and intermediate result for macro expansion operations.

Variants

OptExpr(Option<P<Expr>>)

Expr(P<Expr>)

Pat(P<Pat>)

Ty(P<Ty>)

Stmts(SmallVec<[Stmt; 1]>)

Items(SmallVec<[P<Item>; 1]>)

TraitItems(SmallVec<[P<AssocItem>; 1]>)

ImplItems(SmallVec<[P<AssocItem>; 1]>)

ForeignItems(SmallVec<[P<ForeignItem>; 1]>)

Arms(SmallVec<[Arm; 1]>)

ExprFields(SmallVec<[ExprField; 1]>)

PatFields(SmallVec<[PatField; 1]>)

GenericParams(SmallVec<[GenericParam; 1]>)

Params(SmallVec<[Param; 1]>)

FieldDefs(SmallVec<[FieldDef; 1]>)

Variants(SmallVec<[Variant; 1]>)

Crate(Crate)

Implementations

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.

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: 136 bytes

Size for each variant:

  • OptExpr: 8 bytes
  • Expr: 8 bytes
  • Pat: 8 bytes
  • Ty: 8 bytes
  • Stmts: 40 bytes
  • Items: 24 bytes
  • TraitItems: 24 bytes
  • ImplItems: 24 bytes
  • ForeignItems: 24 bytes
  • Arms: 56 bytes
  • ExprFields: 56 bytes
  • PatFields: 56 bytes
  • GenericParams: 104 bytes
  • Params: 48 bytes
  • FieldDefs: 88 bytes
  • Variants: 128 bytes
  • Crate: 56 bytes