pub trait WrappingDiv: Sized + Div<Self, Output = Self> {
    // Required method
    fn wrapping_div(&self, v: &Self) -> Self;
}pub trait WrappingDiv: Sized + Div<Self, Output = Self> {
    // Required method
    fn wrapping_div(&self, v: &Self) -> Self;
}