Trait aurum_numeric::TryAdd [] [src]

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

Fallible addition trait.

Associated Types

Required Methods

Implementors