Derive Macro BitString
Source #[derive(BitString)]
{
#[asn1]
}
Expand description
Derive the BitString on a struct with bool fields.
ⓘuse der::BitString;
#[derive(BitString)]
pub struct MyFlags {
pub flag_0: bool,
pub flag_1: bool,
pub flag_2: bool,
}