Struct devise::syn::DeriveInput [−][src]
pub struct DeriveInput {
pub attrs: Vec<Attribute, Global>,
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 if Syn is built with the "derive" feature.
Fields
attrs: Vec<Attribute, Global>Attributes tagged on the whole struct or enum.
vis: VisibilityVisibility of the struct or enum.
ident: IdentName of the struct or enum.
generics: GenericsGenerics required to complete the definition.
data: DataData within the struct or enum.
Trait Implementations
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Returns a Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty. Read more