pub trait DivRound {
// Required method
fn div_round(&self, rhs: &Self) -> Self;
}Expand description
Division rounded to the nearest integer.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".