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.
Required Associated Types§
Required Methods§
fn checked_div(&self, v: &Rhs) -> Option<Self::Output>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".