pub trait CheckedDivFix<Rhs> {
type Output;
// Required method
fn checked_div(&self, v: &Rhs) -> Option<Self::Output>;
}Expand description
Adapts CheckedDiv to this library with computed Output type.
pub trait CheckedDivFix<Rhs> {
type Output;
// Required method
fn checked_div(&self, v: &Rhs) -> Option<Self::Output>;
}Adapts CheckedDiv to this library with computed Output type.