Trait aurum_numeric::TryNeg [] [src]

pub trait TryNeg {
    type Output;
    type Err;
    fn try_neg(self) -> Result<Self::Output, Self::Err>;
}

Fallible negation trait.

Associated Types

Required Methods

Implementors