pub trait UpcastSub<H: Sub<Output = H> + Rem<Output = H>>: Upcast<Higher = H> + CheckedSub + Copy {
    fn upcast_sub(self, rhs: Self) -> H { ... }
    fn upcast_sub_mod(self, rhs: Self, modulo: Self) -> Self { ... }
}

Provided Methods

Implementations on Foreign Types

Implementors