Struct syntax_ext::deriving::generic::FieldInfo [] [src]

pub struct FieldInfo<'a> {
    pub span: Span,
    pub name: Option<Ident>,
    pub self_: P<Expr>,
    pub other: Vec<P<Expr>>,
    pub attrs: &'a [Attribute],
}
🔬 This is a nightly-only experimental API. (rustc_private)

Summary of the relevant parts of a struct/enum field.

Fields

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

None for tuple structs/normal enum variants, Some for normal structs/struct enum variants.

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

The expression corresponding to this field of self (specifically, a reference to it).

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

The expressions corresponding to references to this field in the other Self arguments.

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

The attributes on the field