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 Tokens. Read more

[]

Convert self directly into a Tokens object. 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