Trait fyrox_math::Number

source ·
pub trait Number: NumAssign + 'static + Clone + PartialEq + Debug + PartialOrd + Copy { }
Expand description

Arbitrary number.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Number for T
where T: NumAssign + 'static + Clone + PartialEq + Debug + PartialOrd + Copy,