pub trait WideningMul<Rhs = Self>: Sized {
type Output: Integer;
// Required method
fn widening_mul(&self, rhs: Rhs) -> Self::Output;
}👎Deprecated since 0.7.0: please use
ConcatenatingMul insteadExpand description
Widening multiply: returns a value with a number of limbs equal to the sum of the inputs.
Required Associated Types§
Required Methods§
Sourcefn widening_mul(&self, rhs: Rhs) -> Self::Output
👎Deprecated since 0.7.0: please use ConcatenatingMul instead
fn widening_mul(&self, rhs: Rhs) -> Self::Output
ConcatenatingMul insteadPerform widening multiplication.
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.