Struct darling::ast::Fields [−][src]
Equivalent to syn::Fields, but replaces the AST element with a generic.
Fields
style: Stylefields: Vec<T, Global>Implementations
impl<T> Fields<T>[src]
pub fn empty_from(vd: &Fields) -> Fields<T>[src]
pub fn split(self) -> (Style, Vec<T, Global>)[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]
F: FnMut(T) -> U,
pub fn iter(&self) -> Iter<'_, T>[src]
pub fn len(&self) -> usize[src]
Returns the number of fields in the structure.
pub fn is_empty(&self) -> bool[src]
Returns true if the Fields contains no fields.
impl<F> Fields<F> where
F: FromField, [src]
F: FromField,
Trait Implementations
impl<T> Clone for Fields<T> where
T: Clone, [src]
T: Clone,
impl<T> Debug for Fields<T> where
T: Debug, [src]
T: Debug,
impl<T> Eq for Fields<T> where
T: Eq, [src]
T: Eq,
impl<T, U> From<(Style, U)> for Fields<T> where
U: Into<Vec<T, Global>>, [src]
U: Into<Vec<T, Global>>,
impl<T> From<Style> for Fields<T>[src]
impl<T> IntoIterator for Fields<T>[src]
type Item = T
The type of the elements being iterated over.
type IntoIter = IntoIter<T, Global>
Which kind of iterator are we turning this into?
pub fn into_iter(self) -> <Fields<T> as IntoIterator>::IntoIter[src]
impl<T> PartialEq<Fields<T>> for Fields<T> where
T: PartialEq<T>, [src]
T: PartialEq<T>,
impl<T> StructuralEq for Fields<T>[src]
impl<T> StructuralPartialEq for Fields<T>[src]
impl<T> UsesLifetimes for Fields<T> where
T: UsesLifetimes, [src]
T: UsesLifetimes,
pub fn uses_lifetimes(
&self,
options: &Options,
lifetimes: &'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>[src]
&self,
options: &Options,
lifetimes: &'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>
pub fn uses_lifetimes_cloned(
&self,
options: &Options,
lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>[src]
&self,
options: &Options,
lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
impl<T> UsesTypeParams for Fields<T> where
T: UsesTypeParams, [src]
T: UsesTypeParams,
pub fn uses_type_params(
&self,
options: &Options,
type_set: &'a HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>[src]
&self,
options: &Options,
type_set: &'a HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>
pub fn uses_type_params_cloned(
&self,
options: &Options,
type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>[src]
&self,
options: &Options,
type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>
Auto Trait Implementations
impl<T> RefUnwindSafe for Fields<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Fields<T> where
T: Send,
T: Send,
impl<T> Sync for Fields<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Fields<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Fields<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<'i, I, T> CollectLifetimes for T where
T: IntoIterator<Item = &'i I>,
I: 'i + UsesLifetimes, [src]
T: IntoIterator<Item = &'i I>,
I: 'i + UsesLifetimes,
pub fn collect_lifetimes(
self,
options: &Options,
lifetimes: &'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>[src]
self,
options: &Options,
lifetimes: &'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>
pub fn collect_lifetimes_cloned(
self,
options: &Options,
lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>[src]
self,
options: &Options,
lifetimes: &HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
) -> HashSet<Lifetime, BuildHasherDefault<FnvHasher>>
impl<'i, T, I> CollectTypeParams for T where
T: IntoIterator<Item = &'i I>,
I: 'i + UsesTypeParams, [src]
T: IntoIterator<Item = &'i I>,
I: 'i + UsesTypeParams,
pub fn collect_type_params(
self,
options: &Options,
type_set: &'a HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>[src]
self,
options: &Options,
type_set: &'a HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>
pub fn collect_type_params_cloned(
self,
options: &Options,
type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>[src]
self,
options: &Options,
type_set: &HashSet<Ident, BuildHasherDefault<FnvHasher>>
) -> HashSet<Ident, BuildHasherDefault<FnvHasher>>
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,