Struct synstructure::VariantAst [−][src]
pub struct VariantAst<'a> { pub ident: &'a Ident, pub attrs: &'a [Attribute], pub data: &'a VariantData, pub discriminant: &'a Option<ConstExpr>, }
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 astruct.
Fields
ident: &'a Ident
attrs: &'a [Attribute]
data: &'a VariantData
discriminant: &'a Option<ConstExpr>
Trait Implementations
impl<'a> Debug for VariantAst<'a>
[src]
impl<'a> Debug for VariantAst<'a>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> Copy for VariantAst<'a>
[src]
impl<'a> Copy for VariantAst<'a>
impl<'a> Clone for VariantAst<'a>
[src]
impl<'a> Clone for VariantAst<'a>
fn clone(&self) -> VariantAst<'a>
[src]
fn clone(&self) -> VariantAst<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
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]
impl<'a> PartialEq for VariantAst<'a>
fn eq(&self, other: &VariantAst<'a>) -> bool
[src]
fn eq(&self, other: &VariantAst<'a>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &VariantAst<'a>) -> bool
[src]
fn ne(&self, other: &VariantAst<'a>) -> bool
This method tests for !=
.
impl<'a> Eq for VariantAst<'a>
[src]
impl<'a> Eq for VariantAst<'a>
impl<'a> Hash for VariantAst<'a>
[src]
impl<'a> Hash for VariantAst<'a>
Auto Trait Implementations
impl<'a> Send for VariantAst<'a>
impl<'a> Send for VariantAst<'a>
impl<'a> Sync for VariantAst<'a>
impl<'a> Sync for VariantAst<'a>