pub trait Value { const VALUE: u32; }
A u32 value, wrapped in a trait because we don’t yet have const generics.
The actual value represented by the impl’ing type.