pub trait BitBlock:
PrimInt
+ BitAndAssign
+ BitOrAssign
+ BitXorAssign
+ Binary
+ LowerHex
+ UpperHex
+ 'static {
const BITS: usize;
const EMPTY: Self;
const LSB: Self;
const ALL: Self;
}Expand description
Integer that can be used as a block of bits in a bitset.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.