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 Variantimpl Debug for Variant[src]
impl Debug for Variantfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Variant[src]
impl Clone for Variantfn clone(&self) -> Variant[src]
fn clone(&self) -> VariantReturns 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 Variantimpl PartialEq for Variant[src]
impl PartialEq for Variantfn eq(&self, other: &Variant) -> bool[src]
fn eq(&self, other: &Variant) -> boolThis 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) -> boolThis method tests for !=.
impl Hash for Variant[src]
impl Hash for Variant