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