[][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

attrs: &'a [Attribute]ident: &'a Identfields: &'a Fieldsdiscriminant: &'a Option<(Eq, Expr)>

Trait Implementations

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

impl<'a> Unpin for VariantAst<'a>

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

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

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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