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