[][src]Struct syn::DeriveInput

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

Struct or enum sent to a proc_macro_derive macro.

Fields

ident: Ident

Name of the struct or enum.

vis: Visibility

Visibility of the struct or enum.

attrs: Vec<Attribute>

Attributes tagged on the whole struct or enum.

generics: Generics

Generics required to complete the definition.

body: Body

Data within the struct or enum.

Trait Implementations

impl Clone for DeriveInput[src]

impl Eq for DeriveInput[src]

impl PartialEq<DeriveInput> for DeriveInput[src]

impl Debug for DeriveInput[src]

impl Hash for DeriveInput[src]

impl StructuralPartialEq for DeriveInput[src]

impl StructuralEq for DeriveInput[src]

impl ToTokens for DeriveInput[src]

Auto Trait Implementations

impl Send for DeriveInput

impl Sync for DeriveInput

impl Unpin for DeriveInput

impl UnwindSafe for DeriveInput

impl RefUnwindSafe for DeriveInput

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]