pub trait DivRounded<Rhs, Result = Self> {
// Required method
fn div_rounded(self, rhs: Rhs) -> Result;
}Expand description
Division giving a result rounded to fit a Result type.
Required Methods§
Sourcefn div_rounded(self, rhs: Rhs) -> Result
fn div_rounded(self, rhs: Rhs) -> Result
Returns self / other, rounded as Result.