Struct syn::Variant [] [src]

pub struct Variant {
    pub attrs: Vec<Attribute>,
    pub ident: Ident,
    pub fields: Fields,
    pub discriminant: Option<(Eq, Expr)>,
}

An enum variant.

This type is available if Syn is built with the "derive" or "full" feature.

Fields

Attributes tagged on the variant.

Name of the variant.

Content stored in the variant.

Explicit discriminant: Variant = 1

Trait Implementations

impl Synom for Variant
[src]

A short name of the type being parsed. Read more

impl ToTokens for Variant
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for Variant
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for Variant

impl !Sync for Variant