fix(router_derive): Use #[automatically_derived] for all derivations (#133)

This commit is contained in:
kos-for-juspay
2022-12-13 14:53:19 +01:00
committed by GitHub
parent b90009868c
commit 3655c8de82
5 changed files with 9 additions and 0 deletions

View File

@ -176,6 +176,7 @@ pub fn setter(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
}
});
let output = quote::quote! {
#[automatically_derived]
impl #ident {
#(#build_methods)*
}