snarkvm_console_collections::environment::prelude

Trait WrappingRem

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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§