Trait num::traits::ops::overflowing::OverflowingMul    
source · [−]pub trait OverflowingMul: Mul<Self, Output = Self> {
    fn overflowing_mul(&self, v: &Self) -> (Self, bool);
}Expand description
Performs multiplication with a flag for overflow.