TryRem

Trait TryRem 

Source
pub trait TryRem<RHS = Self> {
    type Output;
    type Err;

    // Required method
    fn try_rem(self, rhs: RHS) -> Result<Self::Output, Self::Err>;
}
Expand description

Fallible division remainder trait.

Required Associated Types§

Required Methods§

Source

fn try_rem(self, rhs: RHS) -> Result<Self::Output, Self::Err>

Implementations on Foreign Types§

Source§

impl TryRem for i8

Source§

impl TryRem for i16

Source§

impl TryRem for i32

Source§

impl TryRem for i64

Source§

impl TryRem for isize

Source§

impl TryRem for u8

Source§

impl TryRem for u16

Source§

impl TryRem for u32

Source§

impl TryRem for u64

Source§

impl TryRem for usize

Implementors§