Trait num::traits::Num [-] [+] [src]

pub trait Num: PartialEq + Zero + One + Neg<Output=Self> + Add<Output=Self> + Sub<Output=Self> + Mul<Output=Self> + Div<Output=Self> + Rem<Output=Self> { }

The base trait for numeric types

Implementors