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