bitflags2-derive 0.1.3

Attribute macro implementation for the bitflags2 crate
Documentation
1
2
3
4
5
6
7
use proc_macro2::Ident;

/// Parsed flag definition used by the code generator.
pub(crate) struct FlagVariant {
    pub(crate) ident: Ident,
    pub(crate) value: u128,
}