Trait complex::Number [] [src]

pub trait Number: Add<Output=Self> + Div<Output=Self> + Mul<Output=Self> + Neg<Output=Self> + Sub<Output=Self> + Copy + Debug + PartialEq { }

A number.

Implementors