pub trait NumExt {
// Required methods
fn div_ceil(self, other: Self) -> Self;
fn div_floor(self, other: Self) -> Self;
}Expand description
Additional operations on integers.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".