pub trait ExactDiv<Rhs = Self>: Sized {
    type Output;
    fn checked_exact_div(self, rhs: Rhs) -> Option<Self::Output>;

    fn exact_div(self, rhs: Rhs) -> Self::Output { ... }
}

Associated Types

Required methods

Provided methods

Implementations on Foreign Types

Implementors