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

Required Methods§

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

§

impl WrappingRem for i8

§

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

§

impl WrappingRem for i16

§

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

§

impl WrappingRem for i32

§

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

§

impl WrappingRem for i64

§

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

§

impl WrappingRem for i128

§

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

§

impl WrappingRem for u8

§

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

§

impl WrappingRem for u16

§

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

§

impl WrappingRem for u32

§

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

§

impl WrappingRem for u64

§

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

§

impl WrappingRem for u128

§

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

Implementors§