We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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};
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code:
results in the following rustc error:
Which cannot be silenced, except by wrapping the whole expansion in a module that blanket-silences the warning:
The text was updated successfully, but these errors were encountered: