Struct syn::DeriveInput [−][src]
pub struct DeriveInput {
pub attrs: Vec<Attribute>,
pub vis: Visibility,
pub ident: Ident,
pub generics: Generics,
pub data: Data,
}
Expand description
Data structure sent to a proc_macro_derive
macro.
This type is available only if Syn is built with the "derive"
feature.
Fields
attrs: Vec<Attribute>
Attributes tagged on the whole struct or enum.
vis: Visibility
Visibility of the struct or enum.
ident: Ident
Name of the struct or enum.
generics: Generics
Generics required to complete the definition.
data: Data
Data within the struct or enum.
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for DeriveInput
impl !Send for DeriveInput
impl !Sync for DeriveInput
impl Unpin for DeriveInput
impl UnwindSafe for DeriveInput
Blanket Implementations
Mutably borrows from an owned value. Read more