Skip to main content

WideningMul

Trait WideningMul 

Source
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 instead
Expand description

Widening multiply: returns a value with a number of limbs equal to the sum of the inputs.

Required Associated Types§

Source

type Output: Integer

👎Deprecated since 0.7.0: please use ConcatenatingMul instead

Output of the widening multiplication.

Required Methods§

Source

fn widening_mul(&self, rhs: Rhs) -> Self::Output

👎Deprecated since 0.7.0: please use ConcatenatingMul instead

Perform 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.

Implementors§

Source§

impl<T, Rhs> WideningMul<Rhs> for T
where T: ConcatenatingMul<Rhs>,