Enum rustc_builtin_macros::deriving::generic::SubstructureFields [−][src]
pub enum SubstructureFields<'a> {
Struct(&'a VariantData, Vec<FieldInfo<'a>>),
EnumMatching(usize, usize, &'a Variant, Vec<FieldInfo<'a>>),
EnumNonMatchingCollapsed(Vec<Ident>, &'a [Variant], &'a [Ident]),
StaticStruct(&'a VariantData, StaticFields),
StaticEnum(&'a EnumDef, Vec<(Ident, Span, StaticFields)>),
}Expand description
A summary of the possible sets of fields.
Variants
Struct(&'a VariantData, Vec<FieldInfo<'a>>)Tuple Fields of Struct
0: &'a VariantData1: Vec<FieldInfo<'a>>Matching variants of the enum: variant index, variant count, ast::Variant,
fields: the field name is only non-None in the case of a struct
variant.
Non-matching variants of the enum, but with all state hidden from
the consequent code. The first component holds Idents for all of
the Self arguments; the second component is a slice of all of the
variants for the enum itself, and the third component is a list of
Idents bound to the variant index values for each of the actual
input Self arguments.
StaticStruct(&'a VariantData, StaticFields)A static method where Self is a struct.
Tuple Fields of StaticStruct
0: &'a VariantData1: StaticFieldsA static method where Self is an enum.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for SubstructureFields<'a>
impl<'a> !Send for SubstructureFields<'a>
impl<'a> !Sync for SubstructureFields<'a>
impl<'a> Unpin for SubstructureFields<'a>
impl<'a> !UnwindSafe for SubstructureFields<'a>
Blanket Implementations
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: 64 bytes
Size for each variant:
Struct: 32 bytesEnumMatching: 48 bytesEnumNonMatchingCollapsed: 56 bytesStaticStruct: 40 bytesStaticEnum: 32 bytes