Delete unused original DeriveInput from ast

This commit is contained in:
David Tolnay 2023-12-15 10:54:25 -08:00
parent ed16526d4d
commit d1efad11a5
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -12,7 +12,6 @@ pub enum Input<'a> {
}
pub struct Struct<'a> {
pub original: &'a DeriveInput,
pub attrs: Attrs<'a>,
pub ident: Ident,
pub generics: &'a Generics,
@ -20,7 +19,6 @@ pub struct Struct<'a> {
}
pub struct Enum<'a> {
pub original: &'a DeriveInput,
pub attrs: Attrs<'a>,
pub ident: Ident,
pub generics: &'a Generics,
@ -65,7 +63,6 @@ impl<'a> Struct<'a> {
display.expand_shorthand(&fields);
}
Ok(Struct {
original: node,
attrs,
ident: node.ident.clone(),
generics: &node.generics,
@ -96,7 +93,6 @@ impl<'a> Enum<'a> {
})
.collect::<Result<_>>()?;
Ok(Enum {
original: node,
attrs,
ident: node.ident.clone(),
generics: &node.generics,