pub trait WrappingMul<Rhs = Self> {
type Output;
// Required method
fn wrapping_mul(self, rhs: Rhs) -> Self::Output;
}Expand description
Multiplication operator which wraps around the type’s boundaries in case of overflow or underflow.
pub trait WrappingMul<Rhs = Self> {
type Output;
// Required method
fn wrapping_mul(self, rhs: Rhs) -> Self::Output;
}Multiplication operator which wraps around the type’s boundaries in case of overflow or underflow.