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

[src]

Formats the value using the given formatter. Read more

impl Eq for Variant
[src]

impl PartialEq for Variant
[src]

[src]

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

[src]

This method tests for !=.

impl Hash for Variant
[src]

[src]

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

1.3.0
[src]

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

Auto Trait Implementations

impl !Send for Variant

impl !Sync for Variant