pub type UFix16<Exp> = Fix<u16, U2, Exp>;
struct UFix16<Exp> { pub bits: u16, /* private fields */ }
bits: u16
The underlying integer.