Trait aurum_numeric::TryDiv [] [src]

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

Fallible division trait.

Associated Types

Required Methods

Implementors