Incorrect error message on enum parsing when a binwrite impl is missing
While trying out binrw, I implemented a parser using the binrw attribute while I should have been using the binread one instead.
Due to missing a binwrite impl for my struct, I ended up getting an error message, but it was pointing out an error that wasn't relevant, which you can observe on this screenshot:

As you can see, the enum is properly defined, and the error is already addressed.
Adding to this: the issue is that the BinWrite error is copy/pasted from the binread error
The incorrect error has been fixed by #139 so this can be closed when that lands.
This is fixed by c6931d02d60fe7aa4f634e69e4ecb1fecb047b5c. Thanks!