Trait bonsaidb::core::num_traits::SaturatingMul   
source · pub trait SaturatingMul: Sized + Mul<Output = Self> {
    // Required method
    fn saturating_mul(&self, v: &Self) -> Self;
}Expand description
Performs multiplication that saturates at the numeric bounds instead of overflowing.
Required Methods§
sourcefn saturating_mul(&self, v: &Self) -> Self
 
fn saturating_mul(&self, v: &Self) -> Self
Saturating multiplication. Computes self * other, saturating at the relevant high or low boundary of
the type.
Object Safety§
This trait is not object safe.