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

Returns self * other, rounded as Result.

Implementors