pub trait RationalArg: Clone + Ord + Div<Self, Output = Self> + Rem<Self, Output = Self> + Add<Self, Output = Self> + AddAssign<Self> + Unsigned + Zero + One { }

Implementors§

source§

impl<T: Clone + Ord + Div<Self, Output = Self> + Rem<Self, Output = Self> + Add<Self, Output = Self> + AddAssign<Self> + Unsigned + Zero + One> RationalArg for T