duesee / imap-codec

Rock-solid and complete codec for IMAP
Apache License 2.0
35 stars 13 forks source link

Implement `Copy` for `StatusKind` #401

Closed jakoschiko closed 6 months ago

jakoschiko commented 7 months ago

I would expect that a simple enum like StatusKind would always implement Copy. Any reasons why this is currently not the case?

duesee commented 6 months ago

Nope, no good reason. I just missed it :-) It could be there are more similar cases. Some enums could almost be Copy, but unfortunately need a Other(String) fallback :-/ Not sure if there is a trick waiting to be used.