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