|
|
|
|
|
by est31
2377 days ago
|
|
It can both be applied to enum variants as well as to entire enums. I meant the latter case. From the release announcement: > A perhaps more important aspect of #[non_exhaustive] is that it can also be attached to enums themselves. An example, taken from the standard library, is Ordering For example, take this _Nonexhaustive enum case here: https://github.com/est31/rcgen/blob/d6b84d3d9d51b088dd672975... A little bit further down, I'm matching on the enum in the to_oid function. I'd prefer if I got an error or at least a warning pointing to the match if I added a new enum case and didn't update the match statement. |
|
[0]: https://play.rust-lang.org/?version=stable&mode=debug&editio...