Enum syn::VariantData
[−]
[src]
pub enum VariantData {
Struct(Vec<Field>),
Tuple(Vec<Field>),
Unit,
}Data stored within an enum variant or struct.
Variants
Struct(Vec<Field>)Struct variant, e.g. Point { x: f64, y: f64 }.
Tuple(Vec<Field>)Tuple variant, e.g. Some(T).
UnitUnit variant, e.g. None.
Methods
impl VariantData[src]
pub fn fields(&self) -> &[Field][src]
Slice containing the fields stored in the variant.
pub fn fields_mut(&mut self) -> &mut [Field][src]
Mutable slice containing the fields stored in the variant.
Trait Implementations
impl ToTokens for VariantData[src]
impl Debug for VariantData[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Clone for VariantData[src]
fn clone(&self) -> VariantData[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for VariantData[src]
impl PartialEq for VariantData[src]
fn eq(&self, __arg_0: &VariantData) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &VariantData) -> bool[src]
This method tests for !=.