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 ToTokens for Variant
impl Debug for Variant
[src]
impl Debug for Variant
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for Variant
[src]
impl Clone for Variant
fn clone(&self) -> Variant
[src]
fn clone(&self) -> Variant
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Eq for Variant
[src]
impl Eq for Variant
impl PartialEq for Variant
[src]
impl PartialEq for Variant
fn eq(&self, other: &Variant) -> bool
[src]
fn eq(&self, other: &Variant) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Variant) -> bool
[src]
fn ne(&self, other: &Variant) -> bool
This method tests for !=
.
impl Hash for Variant
[src]
impl Hash for Variant