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

Required Methods

Implementations on Foreign Types

Implementors