pub type U32OpenClosed<const M: u32, const N: u32> = And<U32Gt<M>, U32Le<N>>;
Represents (M, N] intervals.
(M, N]
struct U32OpenClosed<const M: u32, const N: u32> { /* private fields */ }