pub trait CheckedDiv<RHS = Self>: Sized {
// Required methods
fn checked_div(self, rhs: RHS) -> Option<Self>;
fn checked_div_ceil(self, rhs: RHS) -> Option<Self>;
}Required Methods§
fn checked_div(self, rhs: RHS) -> Option<Self>
fn checked_div_ceil(self, rhs: RHS) -> Option<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.