Struct synstructure::VariantAst [−][src]
pub struct VariantAst<'a> { pub attrs: &'a [Attribute], pub ident: &'a Ident, pub fields: &'a Fields, pub discriminant: &'a Option<(Eq, Expr)>, }
Expand description
This type is similar to syn
’s Variant
type, however each of the fields
are references rather than owned. When this is used as the AST for a real
variant, this struct simply borrows the fields of the syn::Variant
,
however this type may also be used as the sole variant for a struct.
Fields
attrs: &'a [Attribute]
ident: &'a Ident
fields: &'a Fields
discriminant: &'a Option<(Eq, Expr)>
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> RefUnwindSafe for VariantAst<'a>
impl<'a> !Send for VariantAst<'a>
impl<'a> !Sync for VariantAst<'a>
impl<'a> Unpin for VariantAst<'a>
impl<'a> UnwindSafe for VariantAst<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more