pub trait TryDiv<Arg = Self> {
type Output;
// Required method
fn try_div(self, arg: Arg) -> Result<Self::Output, Overflow>;
}
pub trait TryDiv<Arg = Self> {
type Output;
// Required method
fn try_div(self, arg: Arg) -> Result<Self::Output, Overflow>;
}