Trait aurum_numeric::TryRem [] [src]

pub trait TryRem<RHS = Self> {
    type Output;
    type Err;
    fn try_rem(self, rhs: RHS) -> Result<Self::Output, Self::Err>;
}

Fallible division remainder trait.

Associated Types

Required Methods

Implementors