Trait agb_fixnum::Number

source ·
pub trait Number: Sized + Copy + PartialOrd + Ord + PartialEq + Eq + Add<Output = Self> + Sub<Output = Self> + Rem<Output = Self> + Div<Output = Self> + Mul<Output = Self> { }
Expand description

A trait for everything required to use as the internal representation of the fixed point number.

Object Safety§

This trait is not object safe.

Implementors§