pub trait Bits: Clone + Copy + PartialEq + BitAnd<Output = Self> + BitOr<Output = Self> + BitXor<Output = Self> + Not<Output = Self> + Sized + 'static {
    const EMPTY: Self;
    const ALL: Self;
}Expand description
Underlying storage for a flags type.