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