Trait fix::CheckedDivFix
source · 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.