Encap_Enum provides the encap_enum!
macro for defining enumerations, bitflags and groups of constants.
Add this to your Cargo.toml
:
toml
[dependencies]
encap_enum = "0.1.5"
and this to your crate root:
```rust
extern crate encap_enum; ```
enum
visibility for both internal values and the enum itself.#[repr(C)]
, #[derive()]
, and many others.rust
encap_enum!{
/// ClassStyle is a structure used in the Window class.
#[repr(C)]
pub enum ClassStyle: pub u32 {
ByteAlignClient = 0x0000_1000,
ByteAlignWindow = 0x0000_2000, /// Aligns window on a byte boundary.
DoubleClicks = 0x0000_0008,
DropShadow = 0x0002_0000,
GlobalClass = 0x0000_4000,
// ...
}
}
fn main() {
println!("ByteAlignClient integer representation: {}", ClassStyle::ByteAlignClient.0);
println!("ByteAlignClient debug representation: {:?}", ClassStyle::ByteAlignClient);
}
The internal data structure is a tuple struct, so accessing the data must be through .0
.
encap_enum
is licenced under the MIT Licence.