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

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

Panics

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

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.

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

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

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

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

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

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

Returns true if this instance is Data::Enum.

Returns true if this instance is Data::Struct.

Attempt to convert from a syn::Data instance.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

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

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.