trait Word { const SIZE: usize; } impl Word for u8 { const SIZE: usize = 1; } impl Word for u16 { const SIZE: usize = 2; } impl Word for u32 { const SIZE: usize = 4; } then you can require `W: Word`