pub trait OptionWrappingAdd<Rhs = Self, InnerRhs = Rhs> {
    type Output;

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

Trait for values and Options wrapping addition.

Implementing this trait leads to the following auto-implementations:

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

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

Required Associated Types§

source

type Output

The resulting inner type after applying the addition.

Required Methods§

source

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

Computes the addition wrapping at the numeric bounds instead of overflowing.

Returns None if at least one argument is None.

Implementations on Foreign Types§

source§

impl OptionWrappingAdd for i8

source§

impl OptionWrappingAdd for i16

source§

impl OptionWrappingAdd for i32

source§

impl OptionWrappingAdd for i64

source§

impl OptionWrappingAdd for i128

source§

impl OptionWrappingAdd for u8

source§

impl OptionWrappingAdd for u16

source§

impl OptionWrappingAdd for u32

source§

impl OptionWrappingAdd for u64

source§

impl OptionWrappingAdd for u128

source§

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

§

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

source§

fn opt_wrapping_add( self, rhs: &Option<InnerRhs> ) -> Option<<Option<T> as OptionWrappingAdd<&Option<InnerRhs>, InnerRhs>>::Output>

source§

impl<T, InnerRhs> OptionWrappingAdd<Option<InnerRhs>, InnerRhs> for Option<T>
where T: OptionOperations + OptionWrappingAdd<InnerRhs>,

§

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

source§

fn opt_wrapping_add( self, rhs: Option<InnerRhs> ) -> Option<<Option<T> as OptionWrappingAdd<Option<InnerRhs>, InnerRhs>>::Output>

source§

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

§

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

source§

fn opt_wrapping_add( self, rhs: Rhs ) -> Option<<Option<T> as OptionWrappingAdd<Rhs>>::Output>

Implementors§