pub trait MulAdd {
// Required method
fn mul_add(self, m: Self, a: Self) -> Self;
}
Expand description
Combined multiplication and addition operation.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.