Closed Colerar closed 1 year ago
non_exhaustive (RFC 2008) attribute was added in Rust v1.40.0 (2019-12-19).
non_exhaustive
pub enum LinkKind { Url, Email, #[doc(hidden)] __Nonexhaustive, }
The code above can be written idiomatically as:
#[non_exhaustive] pub enum LinkKind { Url, Email, }
Thanks, done!
non_exhaustive
(RFC 2008) attribute was added in Rust v1.40.0 (2019-12-19).The code above can be written idiomatically as: