TryRem

Trait TryRem 

Source
pub trait TryRem<T>: Sized {
    // Required method
    fn try_rem(self, rhs: T) -> Result<Self>;
}

Required Methods§

Source

fn try_rem(self, rhs: T) -> Result<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 TryRem<i32> for i32

Source§

fn try_rem(self, rhs: i32) -> Result<Self>

Source§

impl TryRem<i64> for i64

Source§

fn try_rem(self, rhs: i64) -> Result<Self>

Source§

impl TryRem<i128> for i128

Source§

fn try_rem(self, rhs: i128) -> Result<Self>

Source§

impl TryRem<u32> for u32

Source§

fn try_rem(self, rhs: u32) -> Result<Self>

Source§

impl TryRem<u64> for u64

Source§

fn try_rem(self, rhs: u64) -> Result<Self>

Source§

impl TryRem<u128> for u128

Source§

fn try_rem(self, rhs: u128) -> Result<Self>

Implementors§