pub trait ModularReducePow<E = Self>: ModularReduce {
    fn pow_modular_reduce<M: Modulus<Self>>(
        &self,
        exponent: &E,
        modulus: M
    ) -> Self; }

Required methods

Implementations on Foreign Types

Implementors