pub trait WrappingRem: Sized + Rem<Self, Output = Self> {
    // Required method
    fn wrapping_rem(&self, v: &Self) -> Self;
}

Required Methods§

source

fn wrapping_rem(&self, v: &Self) -> Self

Implementations on Foreign Types§

source§

impl WrappingRem for i128

source§

impl WrappingRem for u32

source§

fn wrapping_rem(&self, v: &Self) -> u32

source§

impl WrappingRem for u16

source§

fn wrapping_rem(&self, v: &Self) -> u16

source§

impl WrappingRem for u64

source§

fn wrapping_rem(&self, v: &Self) -> u64

source§

impl WrappingRem for u128

source§

impl WrappingRem for u8

source§

fn wrapping_rem(&self, v: &Self) -> u8

source§

impl WrappingRem for i64

source§

fn wrapping_rem(&self, v: &Self) -> i64

source§

impl WrappingRem for i32

source§

fn wrapping_rem(&self, v: &Self) -> i32

source§

impl WrappingRem for i8

source§

fn wrapping_rem(&self, v: &Self) -> i8

source§

impl WrappingRem for i16

source§

fn wrapping_rem(&self, v: &Self) -> i16

Implementors§