[][src]Enum syn::Fields

pub enum Fields {
    Named(FieldsNamed),
    Unnamed(FieldsUnnamed),
    Unit,
}

Data stored within an enum variant or struct.

This type is available if Syn is built with the "derive" or "full" feature.

Syntax tree enum

This type is a syntax tree enum.

Variants

Named fields of a struct or struct variant such as Point { x: f64, y: f64 }.

This type is available if Syn is built with the "derive" or "full" feature.

Unnamed fields of a tuple struct or tuple variant such as Some(T).

This type is available if Syn is built with the "derive" or "full" feature.

Unit struct or unit variant such as None.

Methods

impl Fields
[src]

Important traits for Iter<'a, T>

Get an iterator over the borrowed Field items in this object. This iterator can be used to iterate over a named or unnamed struct or variant's fields uniformly.

Important traits for IterMut<'a, T>

Get an iterator over the mutably borrowed Field items in this object. This iterator can be used to iterate over a named or unnamed struct or variant's fields uniformly.

Trait Implementations

impl PartialEq<Fields> for Fields
[src]

impl Clone for Fields
[src]

Performs copy-assignment from source. Read more

impl From<FieldsNamed> for Fields
[src]

impl From<FieldsUnnamed> for Fields
[src]

impl<'a> IntoIterator for &'a Fields
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a mut Fields
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

impl Eq for Fields
[src]

impl Hash for Fields
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Fields
[src]

impl ToTokens for Fields
[src]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl !Send for Fields

impl !Sync for Fields

Blanket Implementations

impl<T> Spanned for T where
    T: ToTokens
[src]

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.