Skip to content

Commit 9b18468

Browse files
authored
Fix missing generics on impl for EnumTryAs (#337)
1 parent 2056939 commit 9b18468

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

strum_macros/src/macros/enum_try_as.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pub fn enum_try_as_inner(ast: &DeriveInput) -> syn::Result<TokenStream> {
1010
};
1111

1212
let enum_name = &ast.ident;
13+
let (impl_generics, ty_generics, where_clause) = ast.generics.split_for_impl();
1314

1415
let variants: Vec<_> = variants
1516
.iter()
@@ -72,9 +73,8 @@ pub fn enum_try_as_inner(ast: &DeriveInput) -> syn::Result<TokenStream> {
7273
.collect();
7374

7475
Ok(quote! {
75-
impl #enum_name {
76+
impl #impl_generics #enum_name #ty_generics #where_clause {
7677
#(#variants)*
7778
}
78-
}
79-
.into())
79+
})
8080
}

0 commit comments

Comments
 (0)