We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2056939 commit 9b18468Copy full SHA for 9b18468
strum_macros/src/macros/enum_try_as.rs
@@ -10,6 +10,7 @@ pub fn enum_try_as_inner(ast: &DeriveInput) -> syn::Result<TokenStream> {
10
};
11
12
let enum_name = &ast.ident;
13
+ let (impl_generics, ty_generics, where_clause) = ast.generics.split_for_impl();
14
15
let variants: Vec<_> = variants
16
.iter()
@@ -72,9 +73,8 @@ pub fn enum_try_as_inner(ast: &DeriveInput) -> syn::Result<TokenStream> {
72
73
.collect();
74
75
Ok(quote! {
- impl #enum_name {
76
+ impl #impl_generics #enum_name #ty_generics #where_clause {
77
#(#variants)*
78
}
- }
79
- .into())
+ })
80
0 commit comments