[][src]Struct synstructure::VariantAst

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

Trait Implementations

impl<'a> PartialEq<VariantAst<'a>> for VariantAst<'a>
[src]

impl<'a> Clone for VariantAst<'a>
[src]

Performs copy-assignment from source. Read more

impl<'a> Copy for VariantAst<'a>
[src]

impl<'a> Eq for VariantAst<'a>
[src]

impl<'a> Hash for VariantAst<'a>
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'a> Debug for VariantAst<'a>
[src]

Auto Trait Implementations

impl<'a> !Send for VariantAst<'a>

impl<'a> !Sync for VariantAst<'a>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.