pub trait BitEnum: Into<Self::Scalar> {
    type Scalar: BitAnd<Output = Self::Scalar> + BitOr<Output = Self::Scalar> + Not<Output = Self::Scalar> + From<u8> + PartialEq + Copy;
}Required Associated Types§
type Scalar: BitAnd<Output = Self::Scalar> + BitOr<Output = Self::Scalar> + Not<Output = Self::Scalar> + From<u8> + PartialEq + Copy
Object Safety§
This trait is not object safe.