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: 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.
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