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