[][src]Struct darling::ast::Fields

pub struct Fields<T> {
    pub style: Style,
    pub fields: Vec<T>,
}

Equivalent to syn::Fields, but replaces the AST element with a generic.

Fields

style: Stylefields: Vec<T>

Methods

impl<T> Fields<T>[src]

pub fn empty_from(vd: &Fields) -> Fields<T>[src]

pub fn split(self) -> (Style, Vec<T>)[src]

Splits the Fields into its style and fields for further processing. Returns an empty Vec for Unit data.

pub fn is_newtype(&self) -> bool[src]

Returns true if this variant's data makes it a newtype.

pub fn is_unit(&self) -> bool[src]

pub fn is_tuple(&self) -> bool[src]

pub fn is_struct(&self) -> bool[src]

pub fn as_ref(&'a self) -> Fields<&'a T>[src]

pub fn map<F, U>(self, map: F) -> Fields<U> where
    F: FnMut(T) -> U, 
[src]

pub fn iter(&self) -> Iter<T>[src]

impl<F> Fields<F> where
    F: FromField
[src]

pub fn try_from(fields: &Fields) -> Result<Fields<F>, Error>[src]

Trait Implementations

impl<T> UsesTypeParams for Fields<T> where
    T: UsesTypeParams
[src]

fn uses_type_params_cloned(
    &self,
    options: &Options,
    type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>
[src]

Find all type params using uses_type_params, then clone the found values and return the set.

impl<T> UsesLifetimes for Fields<T> where
    T: UsesLifetimes
[src]

fn uses_lifetimes_cloned(
    &self,
    options: &Options,
    lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
[src]

Find all used lifetimes, then clone them and return that set.

impl<T, U> From<(Style, U)> for Fields<T> where
    U: Into<Vec<T>>, 
[src]

impl<T> From<Style> for Fields<T>[src]

impl<T> PartialEq<Fields<T>> for Fields<T> where
    T: PartialEq<T>, 
[src]

impl<T> Debug for Fields<T> where
    T: Debug
[src]

impl<T> Eq for Fields<T> where
    T: Eq
[src]

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> IntoIterator for Fields<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IntoIter<T>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<T> Send for Fields<T> where
    T: Send

impl<T> Sync for Fields<T> where
    T: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = !

🔬 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]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<'i, I, T> CollectLifetimes for T where
    I: 'i + UsesLifetimes,
    T: IntoIterator<Item = &'i I>, 
[src]

impl<'i, T, I> CollectTypeParams for T where
    I: 'i + UsesTypeParams,
    T: IntoIterator<Item = &'i I>, 
[src]