Struct syn::DeriveInput[][src]

pub struct DeriveInput {
    pub attrs: Vec<Attribute>,
    pub vis: Visibility,
    pub ident: Ident,
    pub generics: Generics,
    pub data: Data,
}

Data structure sent to a proc_macro_derive macro.

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

Fields

Attributes tagged on the whole struct or enum.

Visibility of the struct or enum.

Name of the struct or enum.

Generics required to complete the definition.

Data within the struct or enum.

Trait Implementations

impl From<DeriveInput> for Item
[src]

Performs the conversion.

impl Synom for DeriveInput
[src]

A short name of the type being parsed. Read more

impl ToTokens for DeriveInput
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Debug for DeriveInput
[src]

Formats the value using the given formatter. Read more

impl Eq for DeriveInput
[src]

impl PartialEq for DeriveInput
[src]

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

This method tests for !=.

impl Hash for DeriveInput
[src]

Feeds this value into the given [Hasher]. Read more

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

impl Clone for DeriveInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for DeriveInput

impl !Sync for DeriveInput