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)>, }
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
impl<'a> Debug for VariantAst<'a>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a> Copy for VariantAst<'a>
[src]
impl<'a> Clone for VariantAst<'a>
[src]
fn clone(&self) -> VariantAst<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> PartialEq for VariantAst<'a>
[src]
fn eq(&self, __arg_0: &VariantAst<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &VariantAst<'a>) -> bool
[src]
This method tests for !=
.