pub trait MulScaled<T> {
// Required method
fn mul_scaled(self, other: T) -> Self;
}
Expand description
Full scale fixed point multiplication.
Required Methods§
sourcefn mul_scaled(self, other: T) -> Self
fn mul_scaled(self, other: T) -> Self
Scaled multiplication for fixed point
Object Safety§
This trait is not object safe.