Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

derive(EnumDiscriminants) expansion warns on deprecated variants #404

Open
alexkirsz opened this issue Jan 22, 2025 · 0 comments
Open

derive(EnumDiscriminants) expansion warns on deprecated variants #404

alexkirsz opened this issue Jan 22, 2025 · 0 comments

Comments

@alexkirsz
Copy link

The following code:

#[derive(Debug, Clone, EnumDiscriminants)]
pub enum MyEnum {
  #[deprecated]
  VariantA,
  VariantB,
}

results in the following rustc error:

rustc: use of deprecated unit variant `MyEnum::VariantA`
`-D deprecated` implied by `-D warnings`
to override `-D warnings` add `#[allow(deprecated)]`

Which cannot be silenced, except by wrapping the whole expansion in a module that blanket-silences the warning:

mod silenced {
  #![expect(deprecated, reason = "EnumDiscriminants")]

  #[derive(Debug, Clone, EnumDiscriminants)]
  pub enum MyEnum {
    #[deprecated]
    VariantA,
    VariantB,
  }
}

pub use silenced::{MyEnum, MyEnumDiscriminants};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant