pub trait Bits {
const BITS: u32;
const LOG2: u32;
}
Expand description
Describes bits and log2 bits for the numbers. If num_traits has this, we do not need our own implementation: https://github.com/rust-num/num-traits/issues/247
Required Associated Constants§
Object Safety§
This trait is not object safe.