pub trait CheckedDivInner: Sized {
    type Inner;

    fn checked_div_inner(&self, other: &Self::Inner) -> Option<Self>;
}

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§