Enum darling::ast::Data

source ·
pub enum Data<V, F> {
    Enum(Vec<V>),
    Struct(Fields<F>),
}
Expand description

A struct or enum body.

V is the type which receives any encountered variants, and F receives struct fields.

Variants§

§

Enum(Vec<V>)

§

Struct(Fields<F>)

Implementations§

source§

impl<V, F> Data<V, F>

source

pub fn empty_from(src: &Data) -> Data<V, F>

Creates an empty body of the same shape as the passed-in body.

Panics

This function will panic if passed syn::Data::Union.

source

pub fn try_empty_from(src: &Data) -> Result<Data<V, F>, Error>

Creates an empty body of the same shape as the passed-in body.

darling does not support unions; calling this function with a union body will return an error.

source

pub fn as_ref(&self) -> Data<&V, &F>

Creates a new Data<&'a V, &'a F> instance from Data<V, F>.

source

pub fn map_enum_variants<T, U>(self, map: T) -> Data<U, F>where T: FnMut(V) -> U,

Applies a function V -> U on enum variants, if this is an enum.

source

pub fn map_struct_fields<T, U>(self, map: T) -> Data<V, U>where T: FnMut(F) -> U,

Applies a function F -> U on struct fields, if this is a struct.

source

pub fn map_struct<T, U>(self, map: T) -> Data<V, U>where T: FnMut(Fields<F>) -> Fields<U>,

Applies a function to the Fields if this is a struct.

source

pub fn take_struct(self) -> Option<Fields<F>>

Consumes the Data, returning Fields<F> if it was a struct.

source

pub fn take_enum(self) -> Option<Vec<V>>

Consumes the Data, returning Vec<V> if it was an enum.

source

pub fn is_enum(&self) -> bool

Returns true if this instance is Data::Enum.

source

pub fn is_struct(&self) -> bool

Returns true if this instance is Data::Struct.

source§

impl<V, F> Data<V, F>where V: FromVariant, F: FromField,

source

pub fn try_from(body: &Data) -> Result<Data<V, F>, Error>

Attempt to convert from a syn::Data instance.

Trait Implementations§

source§

impl<V, F> Clone for Data<V, F>where V: Clone, F: Clone,

source§

fn clone(&self) -> Data<V, F>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<V, F> Debug for Data<V, F>where V: Debug, F: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<V, F> PartialEq for Data<V, F>where V: PartialEq, F: PartialEq,

source§

fn eq(&self, other: &Data<V, F>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<V, F> UsesLifetimes for Data<V, F>where V: UsesLifetimes, F: UsesLifetimes,

source§

fn uses_lifetimes<'a>( &self, options: &Options, lifetimes: &'a HashSet<Lifetime, BuildHasherDefault<FnvHasher>> ) -> HashSet<&'a Lifetime, BuildHasherDefault<FnvHasher>>

Returns the subset of the queried lifetimes that are used by the implementing syntax element. Read more
source§

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

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

impl<V, F> UsesTypeParams for Data<V, F>where V: UsesTypeParams, F: UsesTypeParams,

source§

fn uses_type_params<'a>( &self, options: &Options, type_set: &'a HashSet<Ident, BuildHasherDefault<FnvHasher>> ) -> HashSet<&'a Ident, BuildHasherDefault<FnvHasher>>

Returns the subset of the queried type parameters that are used by the implementing syntax element. Read more
source§

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

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

impl<V, F> Eq for Data<V, F>where V: Eq, F: Eq,

source§

impl<V, F> StructuralEq for Data<V, F>

source§

impl<V, F> StructuralPartialEq for Data<V, F>

Auto Trait Implementations§

§

impl<V, F> RefUnwindSafe for Data<V, F>where F: RefUnwindSafe, V: RefUnwindSafe,

§

impl<V, F> !Send for Data<V, F>

§

impl<V, F> !Sync for Data<V, F>

§

impl<V, F> Unpin for Data<V, F>where F: Unpin, V: Unpin,

§

impl<V, F> UnwindSafe for Data<V, F>where F: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.