pub trait BitfieldEnum {
    type Primitive;

    fn from_primitive(prim: Self::Primitive) -> Self;
    fn into_primitive(self) -> Self::Primitive;
}

Required Associated Types

Required Methods

Implementors