mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Delete unused original DeriveInput from ast
This commit is contained in:
parent
ed16526d4d
commit
d1efad11a5
1 changed files with 0 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue