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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl WrappingRem for i8

source§

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

source§

impl WrappingRem for i16

source§

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

source§

impl WrappingRem for i32

source§

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

source§

impl WrappingRem for i64

source§

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

source§

impl WrappingRem for i128

source§

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

source§

impl WrappingRem for u8

source§

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

source§

impl WrappingRem for u16

source§

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

source§

impl WrappingRem for u32

source§

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

source§

impl WrappingRem for u64

source§

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

source§

impl WrappingRem for u128

source§

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

Implementors§