Trait option_operations::rem::OptionCheckedRem

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

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

Trait for values and Options checked remainder.

Implementing this trait leads to the following auto-implementations:

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

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

Required Associated Types§

source

type Output

The resulting inner type after applying the remainder.

Required Methods§

source

fn opt_checked_rem(self, rhs: Rhs) -> Result<Option<Self::Output>, Error>

Computes the checked remainder.

  • Returns Ok(Some(result)) if result could be computed.
  • Returns Ok(None) if at least one argument is None.
  • Returns Err(Error::Overflow) if an overflow occured.
  • Returns Err(Error::DivisionByZero) if rhs is zero.

Implementations on Foreign Types§

source§

impl OptionCheckedRem for i8

source§

type Output = i8

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for i16

source§

type Output = i16

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for i32

source§

type Output = i32

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for i64

source§

type Output = i64

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for i128

source§

type Output = i128

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for u8

source§

type Output = u8

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for u16

source§

type Output = u16

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for u32

source§

type Output = u32

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for u64

source§

type Output = u64

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

impl OptionCheckedRem for u128

source§

type Output = u128

source§

fn opt_checked_rem(self, rhs: Self) -> Result<Option<Self::Output>, Error>

source§

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

source§

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

source§

fn opt_checked_rem( self, rhs: &Option<InnerRhs>, ) -> Result<Option<Self::Output>, Error>

source§

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

source§

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

source§

fn opt_checked_rem( self, rhs: Option<InnerRhs>, ) -> Result<Option<Self::Output>, Error>

source§

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

source§

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

source§

fn opt_checked_rem(self, rhs: Rhs) -> Result<Option<Self::Output>, Error>

Implementors§

source§

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

source§

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

source§

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

source§

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