Trait rust_fixed_point_decimal::MulRounded [−][src]
pub trait MulRounded<Rhs, Result = Self> {
fn mul_rounded(self, rhs: Rhs) -> Result;
}Expand description
Multiplication giving a result rounded to fit a Result type.
Required methods
fn mul_rounded(self, rhs: Rhs) -> Result
fn mul_rounded(self, rhs: Rhs) -> Result
Returns self * other, rounded as Result.