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 Parse for Variant
[src]

impl ToTokens for Variant
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Debug for Variant
[src]

Formats the value using the given formatter. Read more

impl Eq for Variant
[src]

impl PartialEq for Variant
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for Variant
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. 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