Trait functional_closures::Rational
source · pub trait Rational: Clone + Copy + Add<Output = Self> + Sub<Output = Self> + Mul<Output = Self> + Div<Output = Self> + From<f64> + PartialEq + Debug {
// Required method
fn pow(self, rhs: Self) -> Self;
}