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]

[src]

[src]

A short name of the type being parsed. Read more

impl ToTokens for Variant
[src]

[src]

Write self to the given Tokens. Read more

[src]

Convert self directly into a Tokens object. Read more

impl Clone for Variant
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more