Struct syn::Variant
[−]
[src]
pub struct Variant { pub ident: Ident, pub attrs: Vec<Attribute>, pub data: VariantData, pub discriminant: Option<ConstExpr>, }
An enum variant.
Fields
ident: Ident
Name of the variant.
attrs: Vec<Attribute>
Attributes tagged on the variant.
data: VariantData
Type of variant.
discriminant: Option<ConstExpr>
Explicit discriminant, e.g. Foo = 1
Trait Implementations
impl ToTokens for Variant
[src]
impl Debug for Variant
[src]
impl Clone for Variant
[src]
fn clone(&self) -> Variant
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Eq for Variant
[src]
impl PartialEq for Variant
[src]
fn eq(&self, __arg_0: &Variant) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Variant) -> bool
This method tests for !=
.