pub trait IntDiv<Rhs = Self> { type Output; // Required method fn int_div(self, rhs: Rhs) -> Self::Output; }