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

Object Safety§

This trait is not object safe.

Implementors§

source§

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