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
A bits type that can be used as storage for a flags type.