modular-bitfield-msb 0.11.2

Allows to easily define bitfield types with modular building blocks. MSB-first version.
Documentation
error[E0277]: the trait bound `[(); 32]: IsU16Compatible` is not satisfied
 --> $DIR/invalid-repr-width-1.rs:4:8
  |
4 | #[repr(u16)] // Too few bits!
  |        ^^^ the trait `IsU16Compatible` is not implemented for `[(); 32]`
  |
  = help: the following implementations were found:
            <[(); 16] as IsU16Compatible>
  = help: see issue #48214
  = help: add `#![feature(trivial_bounds)]` to the crate attributes to enable