JelteF / derive_more

Some more derive(Trait) options
MIT License
1.68k stars 117 forks source link

Fix TryInto derive for generics #384

Closed JelteF closed 2 months ago

JelteF commented 2 months ago

Part of #335

Synopsis

Our TryFrom derive would fail when the type had any generics, this was a bug introduced with our changes for 1.0.

Solution

This fixes that by correctly adding the generic parameters to the Error type of TryFrom.

Checklist