Trait option_operations::mul::OptionSaturatingMul

source ·
pub trait OptionSaturatingMul<Rhs = Self, InnerRhs = Rhs> {
    type Output;

    // Required method
    fn opt_saturating_mul(self, rhs: Rhs) -> Option<Self::Output>;
}
Expand description

Trait for values and Options saturating multiplication.

Implementing this trait leads to the following auto-implementations:

  • OptionSaturatingMul<Option<InnerRhs>> for T.
  • OptionSaturatingMul<Rhs> for Option<T>.
  • OptionSaturatingMul<Option<InnerRhs>> for Option<T>.
  • … and some variants with references.

Note that since the std library doesn’t define any SaturatingMul trait, users must provide the base implementation for the inner type.

Required Associated Types§

source

type Output

The resulting inner type after applying the multiplication.

Required Methods§

source

fn opt_saturating_mul(self, rhs: Rhs) -> Option<Self::Output>

Computes the multiplication saturating at the numeric bounds instead of overflowing.

Returns None if at least one argument is None.

Implementations on Foreign Types§

source§

impl OptionSaturatingMul for i8

source§

type Output = i8

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for i16

source§

type Output = i16

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for i32

source§

type Output = i32

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for i64

source§

type Output = i64

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for i128

source§

type Output = i128

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for u8

source§

type Output = u8

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for u16

source§

type Output = u16

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for u32

source§

type Output = u32

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for u64

source§

type Output = u64

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul for u128

source§

type Output = u128

source§

fn opt_saturating_mul(self, rhs: Self) -> Option<Self::Output>

source§

impl OptionSaturatingMul<u32> for Duration

source§

impl<T, InnerRhs> OptionSaturatingMul<&Option<InnerRhs>, InnerRhs> for Option<T>
where T: OptionOperations + OptionSaturatingMul<InnerRhs>, InnerRhs: Copy,

source§

type Output = <T as OptionSaturatingMul<InnerRhs>>::Output

source§

fn opt_saturating_mul(self, rhs: &Option<InnerRhs>) -> Option<Self::Output>

source§

impl<T, InnerRhs> OptionSaturatingMul<Option<InnerRhs>, InnerRhs> for Option<T>

source§

type Output = <T as OptionSaturatingMul<InnerRhs>>::Output

source§

fn opt_saturating_mul(self, rhs: Option<InnerRhs>) -> Option<Self::Output>

source§

impl<T, Rhs> OptionSaturatingMul<Rhs> for Option<T>

source§

type Output = <T as OptionSaturatingMul<Rhs>>::Output

source§

fn opt_saturating_mul(self, rhs: Rhs) -> Option<Self::Output>

Implementors§

source§

impl<T, InnerRhs> OptionSaturatingMul<&Option<InnerRhs>, InnerRhs> for T
where T: OptionOperations + OptionSaturatingMul<InnerRhs>, InnerRhs: Copy,

source§

type Output = <T as OptionSaturatingMul<InnerRhs>>::Output

source§

impl<T, InnerRhs> OptionSaturatingMul<Option<InnerRhs>, InnerRhs> for T

source§

type Output = <T as OptionSaturatingMul<InnerRhs>>::Output